Browse Source

Fix typo.

users/vapier/wip
Jeff Johnston 3 years ago
parent
commit
816e9d67be
  1. 2
      newlib/libc/unix/getlogin.c

2
newlib/libc/unix/getlogin.c

@ -16,7 +16,7 @@ getlogin ()
extern char *ttyname ();
char *tty;
if (((tty = ttyname (0)) == 0)
if ((tty = ttyname (0)) == 0)
return 0;
if ((utmp_fd = open (UTMP_FILE, O_RDONLY)) == -1)

Loading…
Cancel
Save