Add const to parameter.

This commit is contained in:
Ulrich Drepper 1998-03-03 17:03:11 +00:00
parent dd080a316d
commit 902e041223

View 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));
}