Added brackets for tcc compliance (#103)

This commit is contained in:
arcadius3d 2018-04-09 22:28:52 -03:00 committed by Arun Prakash Jana
parent a5a15b42eb
commit 46dd9f2c4d
1 changed files with 2 additions and 2 deletions

4
nnn.c
View File

@ -1928,7 +1928,7 @@ show_help(char *path)
char tmp[] = "/tmp/nnnXXXXXX"; char tmp[] = "/tmp/nnnXXXXXX";
int i = 0, fd = mkstemp(tmp); int i = 0, fd = mkstemp(tmp);
char *start, *end; char *start, *end;
static char helpstr[] = ( static char helpstr[] = {
"cKey | Function\n" "cKey | Function\n"
"e- + -\n" "e- + -\n"
"7↑, k, ^P | Prev entry\n" "7↑, k, ^P | Prev entry\n"
@ -1977,7 +1977,7 @@ show_help(char *path)
#endif #endif
"e? | Help, settings\n" "e? | Help, settings\n"
"aQ, ^G | Quit and cd\n" "aQ, ^G | Quit and cd\n"
"aq, ^X | Quit\n\n"); "aq, ^X | Quit\n\n"};
if (fd == -1) if (fd == -1)
return -1; return -1;