diff options
Diffstat (limited to 'lib/libc_r/TEST/test_pw.c')
-rw-r--r-- | lib/libc_r/TEST/test_pw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc_r/TEST/test_pw.c b/lib/libc_r/TEST/test_pw.c index b99e7cc37fd..c177fdf90c5 100644 --- a/lib/libc_r/TEST/test_pw.c +++ b/lib/libc_r/TEST/test_pw.c @@ -9,7 +9,7 @@ main() { struct passwd *pw; - CHECKen(pw = getpwuid(getuid())); + CHECKn(pw = getpwuid(getuid())); printf("getpwuid(%d) => %p\n", getuid(), pw); printf(" name: %s\n uid: %d\n gid: %d\n" "class: %s\ngecos: %s\n dir: %s\nshell: %s\n", |