[Scummvm-git-logs] scummvm master -> ade9ed2afe12d086e975d49465d2ca5f93fdd402

ccawley2011 ccawley2011 at gmail.com
Fri May 29 20:38:16 UTC 2020


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
ade9ed2afe TIMIDITY: Replace u_char with unsigned char


Commit: ade9ed2afe12d086e975d49465d2ca5f93fdd402
    https://github.com/scummvm/scummvm/commit/ade9ed2afe12d086e975d49465d2ca5f93fdd402
Author: Cameron Cawley (ccawley2011 at gmail.com)
Date: 2020-05-29T21:37:58+01:00

Commit Message:
TIMIDITY: Replace u_char with unsigned char

Changed paths:
    backends/midi/timidity.cpp


diff --git a/backends/midi/timidity.cpp b/backends/midi/timidity.cpp
index e8713f3fd4..91665fb452 100644
--- a/backends/midi/timidity.cpp
+++ b/backends/midi/timidity.cpp
@@ -352,7 +352,7 @@ void MidiDriver_TIMIDITY::timidity_meta_seq(int p1, int p2, int p3) {
 	/* see _CHN_COMMON from soundcard.h; this is simplified
 	 * to just send seq to the server without any buffers,
 	 * delays and extra functions/macros */
-	u_char seqbuf[8];
+	unsigned char seqbuf[8];
 
 	seqbuf[0] = 0x92;
 	seqbuf[1] = 0;




More information about the Scummvm-git-logs mailing list