diff options
author | Damien Miller <djm@mindrot.org> | 2001-06-27 15:36:08 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2001-06-27 15:36:08 +0200 |
commit | 79b332dd6748980cf9c8af39e3194a7e272b9256 (patch) | |
tree | a0cbb7fba6e8746a658cd94d52ff45293e628c63 /openbsd-compat/glob.c | |
parent | - (djm) Turn up warnings if gcc or egcs detected (diff) | |
download | openssh-79b332dd6748980cf9c8af39e3194a7e272b9256.tar.xz openssh-79b332dd6748980cf9c8af39e3194a7e272b9256.zip |
- (djm) Fix a few warnings the above turned up
Diffstat (limited to 'openbsd-compat/glob.c')
-rw-r--r-- | openbsd-compat/glob.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsd-compat/glob.c b/openbsd-compat/glob.c index 4f70149cb..365d4334f 100644 --- a/openbsd-compat/glob.c +++ b/openbsd-compat/glob.c @@ -37,8 +37,8 @@ #include "includes.h" #include <ctype.h> -long -get_arg_max() +static long +get_arg_max(void) { #ifdef ARG_MAX return(ARG_MAX); |