]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Add const to parameter.
authorUlrich Drepper <drepper@redhat.com>
Tue, 3 Mar 1998 17:03:11 +0000 (17:03 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 3 Mar 1998 17:03:11 +0000 (17:03 +0000)
sunrpc/clnt_perr.c

index 147a5ea23c9b37225a37e595dc728e94cd8afe04..33e99b47d4bc377dff8b4a1be50f54cd56c660c5 100644 (file)
@@ -66,7 +66,7 @@ _buf()
 char *
 clnt_sperror(rpch, s)
        CLIENT *rpch;
-       char *s;
+       const char *s;
 {
        struct rpc_err e;
        void clnt_perrno();
@@ -149,7 +149,7 @@ clnt_sperror(rpch, s)
 void
 clnt_perror(rpch, s)
        CLIENT *rpch;
-       char *s;
+       const char *s;
 {
        (void) fprintf(stderr,"%s",clnt_sperror(rpch,s));
 }