]> err.no Git - dpkg/commitdiff
Style fixes
authorTollef Fog Heen <tfheen@err.no>
Sun, 20 Jan 2008 09:06:10 +0000 (10:06 +0100)
committerTollef Fog Heen <tfheen@err.no>
Sun, 20 Jan 2008 09:06:10 +0000 (10:06 +0100)
lib/myopt.c

index a5262c203f748d12df1591d4cc475c85f3db2513..322c2ef9c672573b8b669205397cbadbe43ef630 100644 (file)
@@ -223,9 +223,13 @@ void loadfilter(char *fn) {
     }
   }
 
-  if (ferror(file)) ohshite(_("read error in configuration file `%.255s'"), fn);
-  if (fclose(file)) ohshite(_("error closing configuration file `%.255s'"), fn);
+  if (ferror(file)) {
+    ohshite(_("read error in configuration file `%.255s'"), fn);
+  }
 
+  if (fclose(file)) {
+    ohshite(_("error closing configuration file `%.255s'"), fn);
+  }
 }
 
 void loadfilters() {