Use int instead of char for return type, in theory avoiding a cast

This commit is contained in:
Glenn L McGrath 2004-05-16 02:35:49 +00:00
parent 5d2edbf16d
commit 21d7d61de1

View File

@ -1096,9 +1096,9 @@ static void add_cmd_block(char *cmdstr)
extern int sed_main(int argc, char **argv)
{
int status = EXIT_SUCCESS;
int opt;
char getpat=1;
char status = EXIT_SUCCESS;
uint8_t getpat = 1;
#ifdef CONFIG_FEATURE_CLEAN_UP
/* destroy command strings on exit */