Skip to content

Commit

Permalink
(Fuser_full_name): Declare p, q and r as unsigned char *.
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard M. Stallman committed Jul 7, 1997
1 parent 0eb4bd2 commit d3fb50c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/editfns.c
Expand Up @@ -692,7 +692,7 @@ name, or \"unknown\" if no such user could be found.")
Lisp_Object uid;
{
struct passwd *pw;
register char *p, *q;
register unsigned char *p, *q;
extern char *index ();
Lisp_Object full;

Expand All @@ -719,7 +719,7 @@ name, or \"unknown\" if no such user could be found.")
/* Substitute the login name for the &, upcasing the first character. */
if (q)
{
register char *r;
register unsigned char *r;
Lisp_Object login;

login = Fuser_login_name (make_number (pw->pw_uid));
Expand Down

0 comments on commit d3fb50c

Please sign in to comment.