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;
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"