Date: Sat, 16 Oct 2010 22:50:12 +0000 (UTC) From: Pawel Jakub Dawidek <pjd@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r213939 - head/sbin/hastd Message-ID: <201010162250.o9GMoCVr093586@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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));
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201010162250.o9GMoCVr093586>