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));
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to