ref: a4b089c6106093aadfc27d0e8a68761305e83838
parent: 65ebf30bfe3ae8f66fb6fe45a5ebe313da474671
author: Paul Brossier <piem@altern.org>
date: Tue Mar 29 11:13:54 EST 2005
midi_file.c by default, int is unsigned on powerpc. use signed int instead.
--- a/ext/midi/midi_file.c
+++ b/ext/midi/midi_file.c
@@ -146,7 +146,7 @@
/** aubio_midi_file_read_mthd */
int aubio_midi_file_read_mthd(aubio_midi_file_t* mf)
{
- char mthd[15];
+ signed char mthd[15];
if (aubio_midi_file_read(mf, mthd, 14) != AUBIO_OK) {
return AUBIO_FAIL;
}