diff options
author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2002-04-28 15:18:50 +0000 |
---|---|---|
committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2002-04-28 15:18:50 +0000 |
commit | f249dbcc7149848de00cd8f4e93fe140dfa3f219 (patch) | |
tree | d7c3c2d08e4ff1d59c15bcb1a7ee8e74f001cb1d /include/rpcsvc | |
parent | 6c28b67b1e004e45f13067a61ca68a011848b065 (diff) |
Spell void * as void * rather than caddr_t. This is complicated by the
fact that caddr_t is often misspelled as char *.
Sponsored by: DARPA, NAI Labs
Notes
Notes:
svn path=/head/; revision=95658
Diffstat (limited to 'include/rpcsvc')
-rw-r--r-- | include/rpcsvc/ypclnt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/rpcsvc/ypclnt.h b/include/rpcsvc/ypclnt.h index 3bf0f30e33dd..05b922bde7e8 100644 --- a/include/rpcsvc/ypclnt.h +++ b/include/rpcsvc/ypclnt.h @@ -81,8 +81,8 @@ int yp_next(char *indomain, char *inmap, char *inkey, int inkeylen, int yp_master(char *indomain, char *inmap, char **outname); int yp_order(char *indomain, char *inmap, int *outorder); int yp_all(char *indomain, char *inmap, struct ypall_callback *incallback); -char * yperr_string(int incode); -char * ypbinderr_string(int incode); +const char *yperr_string(int incode); +const char *ypbinderr_string(int incode); int ypprot_err(unsigned int incode); __END_DECLS |