diff options
author | jb <jb@FreeBSD.org> | 1998-05-10 23:48:18 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1998-05-10 23:48:18 +0000 |
commit | 186a8a7d936c34232dfc096053898927713a892a (patch) | |
tree | 444481f9cb087cb2f2ea657a58edf1b0e57a776e /lib/libss | |
parent | c0399f7b15688e05ef49328f685410e125c2a7ff (diff) | |
download | FreeBSD-src-186a8a7d936c34232dfc096053898927713a892a.zip FreeBSD-src-186a8a7d936c34232dfc096053898927713a892a.tar.gz |
Remove a 'const' because it was getting thrown away anyway.
Diffstat (limited to 'lib/libss')
-rw-r--r-- | lib/libss/error.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libss/error.c b/lib/libss/error.c index 223d72a..3cc1ffa 100644 --- a/lib/libss/error.c +++ b/lib/libss/error.c @@ -73,7 +73,7 @@ void ss_error (va_alist) va_dcl #endif { - register char const *whoami; + register char *whoami; va_list pvar; #ifndef STDARG int sci_idx; |