From: Tollef Fog Heen Date: Sun, 20 Jan 2008 09:06:10 +0000 (+0100) Subject: Style fixes X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=38dce6f3b811784412a6ffa696ba57aaeece2608;p=dpkg Style fixes --- diff --git a/lib/myopt.c b/lib/myopt.c index a5262c20..322c2ef9 100644 --- a/lib/myopt.c +++ b/lib/myopt.c @@ -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() {