Remove unused variables (detected with gcc-4.6) in m68k part

Signed-off-by: Laurent Vivier <laurent@vivier.eu>
This commit is contained in:
Laurent Vivier 2011-12-16 05:07:54 +01:00
parent 14f8dd5556
commit f2be9d761f

View File

@ -180,12 +180,12 @@ int read_config(emile_l2_header_t* info, emile_config_t *econfig)
}; };
int i; int i;
int choice; int choice;
int timeout;
int current; int current;
int res; int res;
int bitrate, parity, datasize, stopbits; int bitrate, parity, datasize, stopbits;
char *root; char *root;
#if defined(USE_CLI) && defined(__LINUX__) #if defined(USE_CLI) && defined(__LINUX__)
int timeout;
int l, c; int l, c;
emile_window_t win; emile_window_t win;
emile_list_t list; emile_list_t list;
@ -234,9 +234,11 @@ int read_config(emile_l2_header_t* info, emile_config_t *econfig)
if (config_get_property(configuration, "default", property) != -1) if (config_get_property(configuration, "default", property) != -1)
choice = strtol(property, NULL, 0); choice = strtol(property, NULL, 0);
#if defined(USE_CLI) && defined(__LINUX__)
timeout = DEFAULT_TIMEOUT; timeout = DEFAULT_TIMEOUT;
if (config_get_property(configuration, "timeout", property) != -1) if (config_get_property(configuration, "timeout", property) != -1)
timeout = strtol(property, NULL, 0); timeout = strtol(property, NULL, 0);
#endif
current = 0; current = 0;
for (index = 0; index < MAX_KERNELS; index++) for (index = 0; index < MAX_KERNELS; index++)