compile with -ansi

This commit is contained in:
Tomasz Moń
2009-03-03 22:39:55 +01:00
parent 157fba0380
commit 49b7f42012
5 changed files with 62 additions and 58 deletions

View File

@@ -1,5 +1,5 @@
CC = gcc CC = gcc
CFLAGS = `pkg-config --cflags glib-2.0 gio-2.0 gtk+-2.0` -Wall -g CFLAGS = `pkg-config --cflags glib-2.0 gio-2.0 gtk+-2.0` -Wall -g -ansi
OFLAG = -o OFLAG = -o
LIBS = `pkg-config --libs glib-2.0 gio-2.0 gtk+-2.0 alsa` -lexpat LIBS = `pkg-config --libs glib-2.0 gio-2.0 gtk+-2.0 alsa` -lexpat

View File

@@ -126,13 +126,13 @@ static EffectSettings amp_settings2[] = {
}; };
static EffectSettings eq_settings[] = { static EffectSettings eq_settings[] = {
// TODO: make those display propertly (display range -12 to 12) /* TODO: make those display propertly (display range -12 to 12) */
{"EQ bass", 0.0, 24.0, EQ_BASS, EQ_POSITION}, {"EQ bass", 0.0, 24.0, EQ_BASS, EQ_POSITION},
{"EQ mid", 0.0, 24.0, EQ_MID, EQ_POSITION}, {"EQ mid", 0.0, 24.0, EQ_MID, EQ_POSITION},
{"EQ treble", 0.0, 24.0, EQ_TREBLE, EQ_POSITION}, {"EQ treble", 0.0, 24.0, EQ_TREBLE, EQ_POSITION},
// TODO: make this display propertly (display range 300 to 5000) /* TODO: make this display propertly (display range 300 to 5000) */
{"EQ mid Hz", 0.0, 4700.0, EQ_MID_HZ, EQ_POSITION}, {"EQ mid Hz", 0.0, 4700.0, EQ_MID_HZ, EQ_POSITION},
// TODO: make this display propertly (display range 500 to 8000) /* TODO: make this display propertly (display range 500 to 8000) */
{"EQ treb Hz", 0.0, 7500.0, EQ_TREBLE_HZ, EQ_POSITION}, {"EQ treb Hz", 0.0, 7500.0, EQ_TREBLE_HZ, EQ_POSITION},
}; };
@@ -159,14 +159,14 @@ static EffectSettings chorusfx_dual_settings[] = {
{"Dual chorus speed", 0.0, 99.0, DUAL_CHORUS_SPEED, CHORUSFX_POSITION}, {"Dual chorus speed", 0.0, 99.0, DUAL_CHORUS_SPEED, CHORUSFX_POSITION},
{"Dual chorus depth", 0.0, 99.0, DUAL_CHORUS_DEPTH, CHORUSFX_POSITION}, {"Dual chorus depth", 0.0, 99.0, DUAL_CHORUS_DEPTH, CHORUSFX_POSITION},
{"Dual chorus level", 0.0, 99.0, DUAL_CHORUS_LEVEL, CHORUSFX_POSITION}, {"Dual chorus level", 0.0, 99.0, DUAL_CHORUS_LEVEL, CHORUSFX_POSITION},
// TODO: DUAL_CHORUS_WAVE with valid options WAVE_TRI, WAVE_SINE, WAVE_SQUARE /* TODO: DUAL_CHORUS_WAVE with valid options WAVE_TRI, WAVE_SINE, WAVE_SQUARE */
}; };
static EffectSettings chorusfx_multi_settings[] = { static EffectSettings chorusfx_multi_settings[] = {
{"Multi chorus speed", 0.0, 99.0, MULTI_CHORUS_SPEED, CHORUSFX_POSITION}, {"Multi chorus speed", 0.0, 99.0, MULTI_CHORUS_SPEED, CHORUSFX_POSITION},
{"Multi chorus depth", 0.0, 99.0, MULTI_CHORUS_DEPTH, CHORUSFX_POSITION}, {"Multi chorus depth", 0.0, 99.0, MULTI_CHORUS_DEPTH, CHORUSFX_POSITION},
{"Multi chorus level", 0.0, 99.0, MULTI_CHORUS_LEVEL, CHORUSFX_POSITION}, {"Multi chorus level", 0.0, 99.0, MULTI_CHORUS_LEVEL, CHORUSFX_POSITION},
// TODO: MULTI_CHORUS_WAVE with valid options WAVE_TRI, WAVE_SINE, WAVE_SQUARE /* TODO: MULTI_CHORUS_WAVE with valid options WAVE_TRI, WAVE_SINE, WAVE_SQUARE */
}; };
static EffectSettings chorusfx_flanger_settings[] = { static EffectSettings chorusfx_flanger_settings[] = {
@@ -174,7 +174,7 @@ static EffectSettings chorusfx_flanger_settings[] = {
{"Flanger depth", 0.0, 99.0, FLANGER_DEPTH, CHORUSFX_POSITION}, {"Flanger depth", 0.0, 99.0, FLANGER_DEPTH, CHORUSFX_POSITION},
{"Flanger regen", 0.0, 99.0, FLANGER_REGEN, CHORUSFX_POSITION}, {"Flanger regen", 0.0, 99.0, FLANGER_REGEN, CHORUSFX_POSITION},
{"Flanger level", 0.0, 99.0, FLANGER_LEVEL, CHORUSFX_POSITION}, {"Flanger level", 0.0, 99.0, FLANGER_LEVEL, CHORUSFX_POSITION},
// TODO: FLANGER_WAVE with valid options WAVE_TRI, WAVE_SINE, WAVE_SQUARE /* TODO: FLANGER_WAVE with valid options WAVE_TRI, WAVE_SINE, WAVE_SQUARE */
}; };
static EffectSettings chorusfx_mxr_flanger_settings[] = { static EffectSettings chorusfx_mxr_flanger_settings[] = {
@@ -189,7 +189,7 @@ static EffectSettings chorusfx_phaser_settings[] = {
{"Phaser depth", 0.0, 99.0, PHASER_DEPTH, CHORUSFX_POSITION}, {"Phaser depth", 0.0, 99.0, PHASER_DEPTH, CHORUSFX_POSITION},
{"Phaser regen", 0.0, 99.0, PHASER_REGEN, CHORUSFX_POSITION}, {"Phaser regen", 0.0, 99.0, PHASER_REGEN, CHORUSFX_POSITION},
{"Phaser level", 0.0, 99.0, PHASER_LEVEL, CHORUSFX_POSITION}, {"Phaser level", 0.0, 99.0, PHASER_LEVEL, CHORUSFX_POSITION},
// TODO: PHASER_WAVE with valid options WAVE_TRI, WAVE_SINE, WAVE_SQUARE /* TODO: PHASER_WAVE with valid options WAVE_TRI, WAVE_SINE, WAVE_SQUARE */
}; };
static EffectSettings chorusfx_vibrato_settings[] = { static EffectSettings chorusfx_vibrato_settings[] = {
@@ -208,19 +208,19 @@ static EffectSettings chorusfx_vibropan_settings[] = {
{"Vibropan speed", 0.0, 99.0, VIBROPAN_SPEED, CHORUSFX_POSITION}, {"Vibropan speed", 0.0, 99.0, VIBROPAN_SPEED, CHORUSFX_POSITION},
{"Vibropan depth", 0.0, 99.0, VIBROPAN_DEPTH, CHORUSFX_POSITION}, {"Vibropan depth", 0.0, 99.0, VIBROPAN_DEPTH, CHORUSFX_POSITION},
{"Vibropan vibra", 0.0, 99.0, VIBROPAN_VIBRA, CHORUSFX_POSITION}, {"Vibropan vibra", 0.0, 99.0, VIBROPAN_VIBRA, CHORUSFX_POSITION},
// TODO: VIBROPAN_WAVE with valid options WAVE_TRI, WAVE_SINE, WAVE_SQUARE /* TODO: VIBROPAN_WAVE with valid options WAVE_TRI, WAVE_SINE, WAVE_SQUARE */
}; };
static EffectSettings chorusfx_tremolo_settings[] = { static EffectSettings chorusfx_tremolo_settings[] = {
{"Tremolo speed", 0.0, 99.0, TREMOLO_SPEED, CHORUSFX_POSITION}, {"Tremolo speed", 0.0, 99.0, TREMOLO_SPEED, CHORUSFX_POSITION},
{"Tremolo depth", 0.0, 99.0, TREMOLO_DEPTH, CHORUSFX_POSITION}, {"Tremolo depth", 0.0, 99.0, TREMOLO_DEPTH, CHORUSFX_POSITION},
// TODO: TREMOLO_WAVE with valid options WAVE_TRI, WAVE_SINE, WAVE_SQUARE /* TODO: TREMOLO_WAVE with valid options WAVE_TRI, WAVE_SINE, WAVE_SQUARE */
}; };
static EffectSettings chorusfx_panner_settings[] = { static EffectSettings chorusfx_panner_settings[] = {
{"Panner speed", 0.0, 99.0, PANNER_SPEED, CHORUSFX_POSITION}, {"Panner speed", 0.0, 99.0, PANNER_SPEED, CHORUSFX_POSITION},
{"Panner depth", 0.0, 99.0, PANNER_DEPTH, CHORUSFX_POSITION}, {"Panner depth", 0.0, 99.0, PANNER_DEPTH, CHORUSFX_POSITION},
// TODO: PANNER_WAVE with valid options WAVE_TRI, WAVE_SINE, WAVE_SQUARE /* TODO: PANNER_WAVE with valid options WAVE_TRI, WAVE_SINE, WAVE_SQUARE */
}; };
static EffectSettings chorusfx_envelope_settings[] = { static EffectSettings chorusfx_envelope_settings[] = {
@@ -248,15 +248,17 @@ static EffectSettings chorusfx_step_filter_settings[] = {
static EffectSettings chorusfx_whammy_settings[] = { static EffectSettings chorusfx_whammy_settings[] = {
{"Whammy pedal", 0.0, 99.0, WHAMMY_PEDAL, CHORUSFX_POSITION}, {"Whammy pedal", 0.0, 99.0, WHAMMY_PEDAL, CHORUSFX_POSITION},
{"Whammy mix", 0.0, 99.0, WHAMMY_MIX, CHORUSFX_POSITION}, {"Whammy mix", 0.0, 99.0, WHAMMY_MIX, CHORUSFX_POSITION},
//TODO: WHAMMY_AMOUNT with valid options: /*
// WHAMMY_OCT_UP, WHAMMY_2OCT_UP, WHAMMY_2ND_DN, WHAMMY_RV_2ND, TODO: WHAMMY_AMOUNT with valid options:
// WHAMMY_4TH_DN, WHAMMY_OCT_DN, WHAMMY_2OCT_DN, WHAMMY_DIV_BMB, WHAMMY_OCT_UP, WHAMMY_2OCT_UP, WHAMMY_2ND_DN, WHAMMY_RV_2ND,
// WHAMMY_M3_MA, WHAMMY_2ND_MA3, WHAMMY_3RD_4TH, WHAMMY_4TH_5TH, WHAMMY_4TH_DN, WHAMMY_OCT_DN, WHAMMY_2OCT_DN, WHAMMY_DIV_BMB,
// WHAMMY_5TH_OCT, WHAMMY_HOCT_UP, WHAMMY_HOCT_DN, WHAMMY_OCT_UD WHAMMY_M3_MA, WHAMMY_2ND_MA3, WHAMMY_3RD_4TH, WHAMMY_4TH_5TH,
WHAMMY_5TH_OCT, WHAMMY_HOCT_UP, WHAMMY_HOCT_DN, WHAMMY_OCT_UD
*/
}; };
static EffectSettings chorusfx_pitch_shift_settings[] = { static EffectSettings chorusfx_pitch_shift_settings[] = {
// TODO: make this display propertly (display range -24 to 24) /* TODO: make this display propertly (display range -24 to 24) */
{"Pitch amount", 0.0, 48.0, PITCH_AMOUNT, CHORUSFX_POSITION}, {"Pitch amount", 0.0, 48.0, PITCH_AMOUNT, CHORUSFX_POSITION},
{"Pitch mix", 0.0, 99.0, PITCH_MIX, CHORUSFX_POSITION}, {"Pitch mix", 0.0, 99.0, PITCH_MIX, CHORUSFX_POSITION},
}; };
@@ -267,63 +269,65 @@ static EffectSettings chorusfx_detune_settings[] = {
}; };
static EffectSettings chorusfx_ips_settings[] = { static EffectSettings chorusfx_ips_settings[] = {
// TODO: IPS_SHIFT_AMOUNT with valid options: /*
// IPS_7TH_DN, IPS_6TH_DN, IPS_5TH_DN, IPS_4TH_DN, IPS_3RD_DN, TODO: IPS_SHIFT_AMOUNT with valid options:
// IPS_2ND_DN, IPS_2ND_UP, IPS_3RD_UP, IPS_4TH_UP, IPS_5TH_UP, IPS_7TH_DN, IPS_6TH_DN, IPS_5TH_DN, IPS_4TH_DN, IPS_3RD_DN,
// IPS_6TH_UP, IPS_7TH_UP, IPS_OCT_U IPS_2ND_DN, IPS_2ND_UP, IPS_3RD_UP, IPS_4TH_UP, IPS_5TH_UP,
IPS_6TH_UP, IPS_7TH_UP, IPS_OCT_U
// TODO: IPS_KEY with valid options: TODO: IPS_KEY with valid options:
// IPS_E, IPS_F, IPS_GB, IPS_G, IPS_AB, IPS_A, IPS_BB, IPS_B, IPS_E, IPS_F, IPS_GB, IPS_G, IPS_AB, IPS_A, IPS_BB, IPS_B,
// IPS_C, IPS_DD, IPS_D, IPS_EB IPS_C, IPS_DD, IPS_D, IPS_EB
// TODO: IPS_SCALE with valid options: TODO: IPS_SCALE with valid options:
// IPS_MAJOR, IPS_MINOR, IPS_DORIA, IPS_MIXLYD, IPS_LYDIAN, IPS_HMINO IPS_MAJOR, IPS_MINOR, IPS_DORIA, IPS_MIXLYD, IPS_LYDIAN, IPS_HMINO
*/
{"IPS level", 0.0, 99.0, IPS_LEVEL, CHORUSFX_POSITION}, {"IPS level", 0.0, 99.0, IPS_LEVEL, CHORUSFX_POSITION},
}; };
static EffectSettings delay_analog_settings[] = { static EffectSettings delay_analog_settings[] = {
// TODO: make this display propertly (10 msec to 5 sec) /* TODO: make this display propertly (10 msec to 5 sec) */
{"Delay time", 0.0, 139.0, DELAY_TIME, DELAY_POSITION}, {"Delay time", 0.0, 139.0, DELAY_TIME, DELAY_POSITION},
{"Delay analog level", 0.0, 99.0, ANALOG_LEVEL, DELAY_POSITION}, {"Delay analog level", 0.0, 99.0, ANALOG_LEVEL, DELAY_POSITION},
// TODO: make last value display propertly /* TODO: make last value display propertly */
{"Delay analog repeats", 0.0, 100.0, ANALOG_REPEATS, DELAY_POSITION}, {"Delay analog repeats", 0.0, 100.0, ANALOG_REPEATS, DELAY_POSITION},
}; };
static EffectSettings delay_digital_settings[] = { static EffectSettings delay_digital_settings[] = {
// TODO: make this display propertly (10 msec to 5 sec) /* TODO: make this display propertly (10 msec to 5 sec) */
{"Delay time", 0.0, 139.0, DELAY_TIME, DELAY_POSITION}, {"Delay time", 0.0, 139.0, DELAY_TIME, DELAY_POSITION},
{"Delay digital level", 0.0, 99.0, DIGITAL_LEVEL, DELAY_POSITION}, {"Delay digital level", 0.0, 99.0, DIGITAL_LEVEL, DELAY_POSITION},
// TODO: make last value display propertly /* TODO: make last value display propertly */
{"Delay digital repeats", 0.0, 100.0, DIGITAL_REPEATS, DELAY_POSITION}, {"Delay digital repeats", 0.0, 100.0, DIGITAL_REPEATS, DELAY_POSITION},
{"Delay digital ducker thresh", 0.0, 99.0, DIGITAL_DUCKER_THRESH, DELAY_POSITION}, {"Delay digital ducker thresh", 0.0, 99.0, DIGITAL_DUCKER_THRESH, DELAY_POSITION},
{"Delay digital ducker level", 0.0, 99.0, DIGITAL_DUCKER_LEVEL, DELAY_POSITION}, {"Delay digital ducker level", 0.0, 99.0, DIGITAL_DUCKER_LEVEL, DELAY_POSITION},
}; };
static EffectSettings delay_modulated_settings[] = { static EffectSettings delay_modulated_settings[] = {
// TODO: make this display propertly (10 msec to 5 sec) /* TODO: make this display propertly (10 msec to 5 sec) */
{"Delay time", 0.0, 139.0, DELAY_TIME, DELAY_POSITION}, {"Delay time", 0.0, 139.0, DELAY_TIME, DELAY_POSITION},
{"Delay modulated level", 0.0, 99.0, MODULATED_LEVEL, DELAY_POSITION}, {"Delay modulated level", 0.0, 99.0, MODULATED_LEVEL, DELAY_POSITION},
// TODO: make last value display propertly /* TODO: make last value display propertly */
{"Delay modulated repeats", 0.0, 100.0, MODULATED_REPEATS, DELAY_POSITION}, {"Delay modulated repeats", 0.0, 100.0, MODULATED_REPEATS, DELAY_POSITION},
{"Delay modulated depth", 0.0, 99.0, MODULATED_DEPTH, DELAY_POSITION}, {"Delay modulated depth", 0.0, 99.0, MODULATED_DEPTH, DELAY_POSITION},
}; };
static EffectSettings delay_pong_settings[] = { static EffectSettings delay_pong_settings[] = {
// TODO: make this display propertly (10 msec to 5 sec) /* TODO: make this display propertly (10 msec to 5 sec) */
{"Delay time", 0.0, 139.0, DELAY_TIME, DELAY_POSITION}, {"Delay time", 0.0, 139.0, DELAY_TIME, DELAY_POSITION},
{"Delay pong level", 0.0, 99.0, PONG_LEVEL, DELAY_POSITION}, {"Delay pong level", 0.0, 99.0, PONG_LEVEL, DELAY_POSITION},
// TODO: make last value display propertly /* TODO: make last value display propertly */
{"Delay pong repeats", 0.0, 100.0, PONG_REPEATS, DELAY_POSITION}, {"Delay pong repeats", 0.0, 100.0, PONG_REPEATS, DELAY_POSITION},
{"Delay pong ducker thresh", 0.0, 99.0, PONG_DUCKER_THRESH, DELAY_POSITION}, {"Delay pong ducker thresh", 0.0, 99.0, PONG_DUCKER_THRESH, DELAY_POSITION},
{"Delay pong ducker level", 0.0, 99.0, PONG_DUCKER_LEVEL, DELAY_POSITION}, {"Delay pong ducker level", 0.0, 99.0, PONG_DUCKER_LEVEL, DELAY_POSITION},
}; };
static EffectSettings delay_tape_settings[] = { static EffectSettings delay_tape_settings[] = {
// TODO: make this display propertly (10 msec to 5 sec) /* TODO: make this display propertly (10 msec to 5 sec) */
{"Delay time", 0.0, 139.0, DELAY_TIME, DELAY_POSITION}, {"Delay time", 0.0, 139.0, DELAY_TIME, DELAY_POSITION},
{"Delay tape level", 0.0, 99.0, TAPE_LEVEL, DELAY_POSITION}, {"Delay tape level", 0.0, 99.0, TAPE_LEVEL, DELAY_POSITION},
// TODO: make last value display propertly /* TODO: make last value display propertly */
{"Delay tape repeats", 0.0, 100.0, TAPE_REPEATS, DELAY_POSITION}, {"Delay tape repeats", 0.0, 100.0, TAPE_REPEATS, DELAY_POSITION},
{"Delay tape wow", 0.0, 99.0, TAPE_WOW, DELAY_POSITION}, {"Delay tape wow", 0.0, 99.0, TAPE_WOW, DELAY_POSITION},
{"Delay tape flutter", 0.0, 99.0, TAPE_FLUTTER, DELAY_POSITION}, {"Delay tape flutter", 0.0, 99.0, TAPE_FLUTTER, DELAY_POSITION},

32
gdigi.c
View File

@@ -22,9 +22,9 @@
#include "gdigi.h" #include "gdigi.h"
#include "gui.h" #include "gui.h"
static u_char device_id = 0x7F; static unsigned char device_id = 0x7F;
static u_char family_id = 0x7F; static unsigned char family_id = 0x7F;
static u_char product_id = 0x7F; static unsigned char product_id = 0x7F;
static snd_rawmidi_t *output = NULL; static snd_rawmidi_t *output = NULL;
static snd_rawmidi_t *input = NULL; static snd_rawmidi_t *input = NULL;
@@ -146,10 +146,10 @@ GString* read_data()
length = 0; length = 0;
for (i = 0; i < err; ++i) for (i = 0; i < err; ++i)
if (buf[i] != 0xFE) // ignore active sensing if (buf[i] != 0xFE) /* ignore active sensing */
buf[length++] = buf[i]; buf[length++] = buf[i];
if ((u_char)buf[length-1] == 0xF7) if ((unsigned char)buf[length-1] == 0xF7)
stop = TRUE; stop = TRUE;
if (length != 0) { if (length != 0) {
@@ -178,7 +178,7 @@ GString *pack_data(gchar *data, gint len)
GString *packed; GString *packed;
gint i; gint i;
gint new_len; gint new_len;
u_char status; unsigned char status;
gint offset; gint offset;
gint status_byte; gint status_byte;
@@ -235,7 +235,7 @@ void send_message(gint procedure, gchar *data, gint len)
static gint get_message_id(GString *msg) static gint get_message_id(GString *msg)
{ {
if (msg->len > 7) { if (msg->len > 7) {
return (u_char)msg->str[7]; return (unsigned char)msg->str[7];
} }
return -1; return -1;
} }
@@ -405,13 +405,13 @@ GStrv query_preset_names(guint bank)
} }
for (x=11; ((x<data->len) && (n<n_total)); x++) { for (x=11; ((x<data->len) && (n<n_total)); x++) {
if ((x % 8) == 0) // every 8th byte is 0x00 if ((x % 8) == 0) /* every 8th byte is 0x00 */
continue; continue;
if (data->str[x] == 0xF7) // every message ends with 0xF7 if (data->str[x] == 0xF7) /* every message ends with 0xF7 */
break; break;
if (data->str[x] == 0) { // presets are splitted with 0x00 if (data->str[x] == 0) { /* presets are splitted with 0x00 */
gchar *name; gchar *name;
name = g_new(gchar, b+1); name = g_new(gchar, b+1);
@@ -442,7 +442,7 @@ static void unpack_message(GString *msg)
int offset; int offset;
int x; int x;
int i; int i;
u_char status; unsigned char status;
gboolean finish = FALSE; gboolean finish = FALSE;
offset = 9; offset = 9;
@@ -450,14 +450,14 @@ static void unpack_message(GString *msg)
i = 8; i = 8;
do { do {
status = (u_char)msg->str[offset-1]; status = (unsigned char)msg->str[offset-1];
for (x=0; x<7; x++) { for (x=0; x<7; x++) {
if ((u_char)msg->str[offset+x] == 0xF7) { if ((unsigned char)msg->str[offset+x] == 0xF7) {
msg->str[i] = 0xF7; msg->str[i] = 0xF7;
finish = TRUE; finish = TRUE;
} }
msg->str[i] = (((status << (x+1)) & 0x80) | (u_char)msg->str[x+offset]); msg->str[i] = (((status << (x+1)) & 0x80) | (unsigned char)msg->str[x+offset]);
i++; i++;
} }
offset += 8; offset += 8;
@@ -484,8 +484,8 @@ GString *get_current_preset()
return data; return data;
} }
static gboolean request_who_am_i(u_char *device_id, u_char *family_id, static gboolean request_who_am_i(unsigned char *device_id, unsigned char *family_id,
u_char *product_id) unsigned char *product_id)
{ {
send_message(REQUEST_WHO_AM_I, NULL, 0); send_message(REQUEST_WHO_AM_I, NULL, 0);

View File

@@ -457,7 +457,7 @@ enum {
PRESETS_FACTORY2 = 5, PRESETS_FACTORY2 = 5,
/* Version 2 and later */ /* Version 2 and later */
PRESETS_EXTERNAL = 6, PRESETS_EXTERNAL = 6
}; };
enum { enum {
@@ -511,7 +511,7 @@ enum {
RECEIVE_DEVICE_NOTIFICATION = 0x70, RECEIVE_DEVICE_NOTIFICATION = 0x70,
ACK = 0x7E, ACK = 0x7E,
NACK = 0x7F, NACK = 0x7F
}; };
void send_message(gint procedure, gchar *data, gint len); void send_message(gint procedure, gchar *data, gint len);

View File

@@ -177,7 +177,7 @@ Preset *create_preset_from_data(GString *data)
x = 0x09; x = 0x09;
n = 0; n = 0;
total = (u_char)data->str[x]; total = (unsigned char)data->str[x];
x++; x++;
Preset *preset = g_malloc(sizeof(Preset)); Preset *preset = g_malloc(sizeof(Preset));
@@ -185,8 +185,8 @@ Preset *create_preset_from_data(GString *data)
preset->params = NULL; preset->params = NULL;
do { do {
id = ((u_char)data->str[x] << 8) | (u_char)data->str[x+1]; id = ((unsigned char)data->str[x] << 8) | (unsigned char)data->str[x+1];
position = (u_char)data->str[x+2]; position = (unsigned char)data->str[x+2];
x+=3; x+=3;
value = data->str[x]; value = data->str[x];
x++; x++;
@@ -195,7 +195,7 @@ Preset *create_preset_from_data(GString *data)
value = 0; value = 0;
gint i; gint i;
for (i=0; i<tmp; i++) { for (i=0; i<tmp; i++) {
value |= ((u_char)data->str[x+i] << (8*(tmp-i-1))); value |= ((unsigned char)data->str[x+i] << (8*(tmp-i-1)));
} }
x+=tmp; x+=tmp;
} }