Date: Thu, 10 Jun 2010 10:17:00 +0000 (UTC) From: Gabor Kovesdan <gabor@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r208974 - head/usr.bin/dc Message-ID: <201006101017.o5AAH04d016415@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: gabor Date: Thu Jun 10 10:17:00 2010 New Revision: 208974 URL: http://svn.freebsd.org/changeset/base/208974 Log: - Fix style(9) Submitted by: ed Approved by: delphij (mentor) Modified: head/usr.bin/dc/dc.c Modified: head/usr.bin/dc/dc.c ============================================================================== --- head/usr.bin/dc/dc.c Thu Jun 10 06:48:09 2010 (r208973) +++ head/usr.bin/dc/dc.c Thu Jun 10 10:17:00 2010 (r208974) @@ -87,7 +87,7 @@ main(int argc, char *argv[]) while ((ch = getopt_long(argc, argv, "e:f:Vx", long_options, NULL)) != -1) { switch (ch) { case 'e': - if(!preproc_done) + if (!preproc_done) init_bmachine(extended_regs); src_setstring(&src, optarg); reset_bmachine(&src); @@ -95,7 +95,7 @@ main(int argc, char *argv[]) preproc_done = true; break; case 'f': - if(!preproc_done) + if (!preproc_done) init_bmachine(extended_regs); procfile(optarg); preproc_done = true;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201006101017.o5AAH04d016415>