diff options
author | Jilles Tjoelker <jilles@FreeBSD.org> | 2013-04-01 17:18:22 +0000 |
---|---|---|
committer | Jilles Tjoelker <jilles@FreeBSD.org> | 2013-04-01 17:18:22 +0000 |
commit | 46c6b52dfb4b0396494b08f60c80e32236df1aaf (patch) | |
tree | 9a5917477e371894a700d8481509e110a980c3bd /bin/sh/parser.h | |
parent | 4f2dc3d723b75f39a6ea49c261e8cbdbf8588c90 (diff) |
sh: Fix various compiler warnings.
It now passes WARNS=7 with clang on i386.
GCC 4.2.1 does not understand setjmp() properly so will always trigger
-Wuninitialized. I will not add the volatile keywords to suppress this.
Notes
Notes:
svn path=/head/; revision=248980
Diffstat (limited to 'bin/sh/parser.h')
-rw-r--r-- | bin/sh/parser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/sh/parser.h b/bin/sh/parser.h index f80d91778787..b803f76dbe64 100644 --- a/bin/sh/parser.h +++ b/bin/sh/parser.h @@ -82,4 +82,4 @@ void fixredir(union node *, const char *, int); int goodname(const char *); int isassignment(const char *); char *getprompt(void *); -const char *expandstr(char *); +const char *expandstr(const char *); |