From f57c944e09417edcbcd69f2b01b937cadef39db2 Mon Sep 17 00:00:00 2001 From: Mark Whitley Date: Thu, 7 Dec 2000 19:56:48 +0000 Subject: Changed names of functions in utility.c and all affected files, to make compliant with the style guide. Everybody rebuild your tags file! --- coreutils/tee.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coreutils/tee.c') diff --git a/coreutils/tee.c b/coreutils/tee.c index 621801336..347684a28 100644 --- a/coreutils/tee.c +++ b/coreutils/tee.c @@ -47,7 +47,7 @@ tee_main(int argc, char **argv) while (optind < argc) { if ((files[nfiles++] = fopen(argv[optind++], mode)) == NULL) { nfiles--; - errorMsg("%s: %s\n", argv[optind-1], strerror(errno)); + error_msg("%s: %s\n", argv[optind-1], strerror(errno)); status = 1; } } -- cgit v1.2.3