mirror of
https://github.com/sheumann/hush.git
synced 2024-12-23 05:29:58 +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)
|
extern int sed_main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
|
int status = EXIT_SUCCESS;
|
||||||
int opt;
|
int opt;
|
||||||
char getpat=1;
|
uint8_t getpat = 1;
|
||||||
char status = EXIT_SUCCESS;
|
|
||||||
|
|
||||||
#ifdef CONFIG_FEATURE_CLEAN_UP
|
#ifdef CONFIG_FEATURE_CLEAN_UP
|
||||||
/* destroy command strings on exit */
|
/* destroy command strings on exit */
|
||||||
|
Loading…
Reference in New Issue
Block a user