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
1 changed files with 3 additions and 1 deletions

View File

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