]> granicus.if.org Git - file/commitdiff
kill the whole __unused thing.
authorChristos Zoulas <christos@zoulas.com>
Mon, 12 Mar 2007 15:43:21 +0000 (15:43 +0000)
committerChristos Zoulas <christos@zoulas.com>
Mon, 12 Mar 2007 15:43:21 +0000 (15:43 +0000)
src/file.c
src/file.h

index 8a5706a159481893158fdf0bcef3f4282cdbbc36..ea4d177de1be2e8a4efdee55104c126902e1b51f 100644 (file)
@@ -71,7 +71,7 @@
 #include "patchlevel.h"
 
 #ifndef        lint
-FILE_RCSID("@(#)$File: file.c,v 1.106 2007/01/16 14:54:57 ljt Exp $")
+FILE_RCSID("@(#)$File: file.c,v 1.107 2007/01/25 21:05:46 christos Exp $")
 #endif /* lint */
 
 
@@ -358,9 +358,9 @@ main(int argc, char *argv[])
 
 private void
 /*ARGSUSED*/
-load(const char *m __unused, int flags)
+load(const char *m, int flags)
 {
-       if (magic)
+       if (magic || m == NULL)
                return;
        magic = magic_open(flags);
        if (magic == NULL) {
index b3a4f57109474df0956c0484c4153e919a0312e6..cfe0b7f0d8c222d73eae9ee6fa1f47b4d8ccaa33 100644 (file)
@@ -27,7 +27,7 @@
  */
 /*
  * file.h - definitions for file(1) program
- * @(#)$File: file.h,v 1.88 2007/02/05 16:46:40 christos Exp $
+ * @(#)$File: file.h,v 1.89 2007/03/01 22:14:54 christos Exp $
  */
 
 #ifndef __file_h__
 #endif
 #endif
 
-#ifndef __unused
-#if __GNUC_PREREQ__(2, 7)
-#define        __unused        __attribute__((__unused__))
-#else
-#define        __unused        /* delete */
-#endif
-#endif
-
 #ifndef MIN
 #define        MIN(a,b)        (((a) < (b)) ? (a) : (b))
 #endif