diff options
Diffstat (limited to 'apps/plugins/midi')
-rw-r--r-- | apps/plugins/midi/midiutil.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/midi/midiutil.c b/apps/plugins/midi/midiutil.c index 87e0f9d9a4..acb1558268 100644 --- a/apps/plugins/midi/midiutil.c +++ b/apps/plugins/midi/midiutil.c | |||
@@ -40,7 +40,7 @@ struct SynthObject voices[MAX_VOICES] IBSS_ATTR; | |||
40 | void *alloc(int size) | 40 | void *alloc(int size) |
41 | { | 41 | { |
42 | static char *offset = NULL; | 42 | static char *offset = NULL; |
43 | static ssize_t totalSize = 0; | 43 | static size_t totalSize = 0; |
44 | char *ret; | 44 | char *ret; |
45 | 45 | ||
46 | int remainder = size % 4; | 46 | int remainder = size % 4; |
@@ -49,10 +49,10 @@ void *alloc(int size) | |||
49 | 49 | ||
50 | if (offset == NULL) | 50 | if (offset == NULL) |
51 | { | 51 | { |
52 | offset = rb->plugin_get_audio_buffer((size_t *)&totalSize); | 52 | offset = rb->plugin_get_audio_buffer(&totalSize); |
53 | } | 53 | } |
54 | 54 | ||
55 | if (size + 4 > totalSize) | 55 | if (size + 4 > (int)totalSize) |
56 | { | 56 | { |
57 | printf("MALLOC BARF"); | 57 | printf("MALLOC BARF"); |
58 | printf("MALLOC BARF"); | 58 | printf("MALLOC BARF"); |