]> git.cworth.org Git - tar/blobdiff - src/warning.c
Merge branch 'upstream' into dfsg-orig
[tar] / src / warning.c
index a9cbccb72e287bb3d9dd30bee76226835e5e692c..4374a88c870a28c35e96e22cf8410628b20979a1 100644 (file)
@@ -76,7 +76,7 @@ set_warning_option (const char *arg)
 {
   int negate = 0;
   int option;
-  
+
   if (strcmp (arg, "none") == 0)
     {
       warning_option = 0;
@@ -88,11 +88,10 @@ set_warning_option (const char *arg)
       arg += 3;
     }
 
-  option = XARGMATCH ("--warning", arg, 
+  option = XARGMATCH ("--warning", arg,
                      warning_args, warning_types);
   if (negate)
     warning_option &= ~option;
   else
     warning_option |= option;
 }
-