svn commit: r213939 - head/sbin/hastd

Pawel Jakub Dawidek pjd at FreeBSD.org
Sat Oct 16 22:50:13 UTC 2010


Author: pjd
Date: Sat Oct 16 22:50:12 2010
New Revision: 213939
URL: http://svn.freebsd.org/changeset/base/213939

Log:
  Use one fprintf() instead of two.
  
  MFC after:	3 days

Modified:
  head/sbin/hastd/pjdlog.c

Modified: head/sbin/hastd/pjdlog.c
==============================================================================
--- head/sbin/hastd/pjdlog.c	Sat Oct 16 22:48:48 2010	(r213938)
+++ head/sbin/hastd/pjdlog.c	Sat Oct 16 22:50:12 2010	(r213939)
@@ -214,8 +214,7 @@ pjdlogv_common(int loglevel, int debugle
 		/* Attach debuglevel if this is debug log. */
 		if (loglevel == LOG_DEBUG)
 			fprintf(out, "[%d]", debuglevel);
-		fprintf(out, " ");
-		fprintf(out, "%s", pjdlog_prefix);
+		fprintf(out, " %s", pjdlog_prefix);
 		vfprintf(out, fmt, ap);
 		if (error != -1)
 			fprintf(out, ": %s.", strerror(error));


More information about the svn-src-all mailing list