diff options
author | 1996-03-25 23:10:34 +0000 | |
---|---|---|
committer | 1996-03-25 23:10:34 +0000 | |
commit | 252697d243d2243aa75a3749f6af8dd8025e09c6 (patch) | |
tree | 7f5694451cd7997db70199e27c99b75a0ca4a587 /lib/libc/stdio | |
parent | Protect use of long long with /* LONGLONG */ (diff) | |
download | wireguard-openbsd-252697d243d2243aa75a3749f6af8dd8025e09c6.tar.xz wireguard-openbsd-252697d243d2243aa75a3749f6af8dd8025e09c6.zip |
Add const qualifier to match prototype
Diffstat (limited to 'lib/libc/stdio')
-rw-r--r-- | lib/libc/stdio/flags.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/stdio/flags.c b/lib/libc/stdio/flags.c index a3850bf8d48..71b401c1508 100644 --- a/lib/libc/stdio/flags.c +++ b/lib/libc/stdio/flags.c @@ -55,7 +55,7 @@ static char rcsid[] = "$NetBSD: flags.c,v 1.5 1995/02/02 02:09:19 jtc Exp $"; */ int __sflags(mode, optr) - register char *mode; + register const char *mode; int *optr; { register int ret, m, o; |