svn commit: r213731 - stable/7/contrib/csup

John Baldwin jhb at FreeBSD.org
Tue Oct 12 17:09:34 UTC 2010


Author: jhb
Date: Tue Oct 12 17:09:33 2010
New Revision: 213731
URL: http://svn.freebsd.org/changeset/base/213731

Log:
  MFC 194070: Remove semicolon that should not have been there.

Modified:
  stable/7/contrib/csup/rcsfile.c
Directory Properties:
  stable/7/contrib/csup/   (props changed)

Modified: stable/7/contrib/csup/rcsfile.c
==============================================================================
--- stable/7/contrib/csup/rcsfile.c	Tue Oct 12 17:04:21 2010	(r213730)
+++ stable/7/contrib/csup/rcsfile.c	Tue Oct 12 17:09:33 2010	(r213731)
@@ -730,7 +730,7 @@ rcsfile_print(struct rcsfile *rf)
 		lprintf(1, "Strict!\n");
 	if (rf->comment != NULL)
 		lprintf(1, "comment: '%s'\n", rf->comment);
-	if (rf->expand != EXPAND_DEFAULT);
+	if (rf->expand != EXPAND_DEFAULT)
 		lprintf(1, "expand: '%s'\n", keyword_encode_expand(rf->expand));
 	
 	/* Print all deltas. */


More information about the svn-src-all mailing list