mirror of
https://github.com/sheumann/hush.git
synced 2024-12-22 14:30:31 +00:00
Use int instead of char for return type, in theory avoiding a cast
This commit is contained in:
parent
5d2edbf16d
commit
21d7d61de1
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user