rename error argument for C preprocessor
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Fri, 22 Mar 1991 06:15:43 +0000 (22:15 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Fri, 22 Mar 1991 06:15:43 +0000 (22:15 -0800)
SCCS-vsn: usr.bin/find/misc.c 5.7

usr/src/usr.bin/find/misc.c

index 5c749dd..b9d8891 100644 (file)
@@ -9,7 +9,7 @@
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)misc.c     5.6 (Berkeley) %G%";
+static char sccsid[] = "@(#)misc.c     5.7 (Berkeley) %G%";
 #endif /* not lint */
 
 #include <sys/types.h>
 #endif /* not lint */
 
 #include <sys/types.h>
@@ -88,10 +88,10 @@ queryuser(argv)
  *     print out a bad argument message.
  */
 void
  *     print out a bad argument message.
  */
 void
-bad_arg(option, error)
-       char *option, *error;
+bad_arg(option, err)
+       char *option, *err;
 {
 {
-       (void)fprintf(stderr, "find: %s: %s.\n", option, error);
+       (void)fprintf(stderr, "find: %s: %s.\n", option, err);
        exit(1);
 }
  
        exit(1);
 }