svn commit: r282462 - head/usr.bin/checknr

Baptiste Daroussin bapt at FreeBSD.org
Tue May 5 09:24:30 UTC 2015


Author: bapt
Date: Tue May  5 09:24:29 2015
New Revision: 282462
URL: https://svnweb.freebsd.org/changeset/base/282462

Log:
  cosmetic fixes
  
  Obtained from:	NetBSD

Modified:
  head/usr.bin/checknr/checknr.c

Modified: head/usr.bin/checknr/checknr.c
==============================================================================
--- head/usr.bin/checknr/checknr.c	Tue May  5 09:01:42 2015	(r282461)
+++ head/usr.bin/checknr/checknr.c	Tue May  5 09:24:29 2015	(r282462)
@@ -395,7 +395,7 @@ prop(int i)
 {
 	if (stk[i].pl == 0)
 		printf(".%s", br[stk[i].opno].opbr);
-	else switch (stk[i].opno) {
+	else switch(stk[i].opno) {
 	case SZ:
 		printf("\\s%c%d", stk[i].pl, stk[i].parm);
 		break;
@@ -567,7 +567,7 @@ addmac(const char *mac)
 	}
 	/* binsrch sets slot as a side effect */
 #ifdef DEBUG
-printf("binsrch(%s) -> %d\n", mac, slot);
+	printf("binsrch(%s) -> %d\n", mac, slot);
 #endif
 	loc = &knowncmds[slot];
 	src = &knowncmds[ncmds-1];


More information about the svn-src-head mailing list