From d537a95fdbc0b4a5f38edea8593b4c085fdd7fcb Mon Sep 17 00:00:00 2001 From: Matt Kraai Date: Fri, 14 Jul 2000 01:51:25 +0000 Subject: Use errorMsg rather than fprintf. --- coreutils/whoami.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'coreutils/whoami.c') diff --git a/coreutils/whoami.c b/coreutils/whoami.c index 983c6725d..01dff81f9 100644 --- a/coreutils/whoami.c +++ b/coreutils/whoami.c @@ -43,7 +43,6 @@ extern int whoami_main(int argc, char **argv) puts(user); exit(TRUE); } - fprintf(stderr, "%s: cannot find username for UID %u\n", applet_name, - (unsigned) uid); + errorMsg("cannot find username for UID %u\n", (unsigned) uid); return(FALSE); } -- cgit v1.2.3