Author: delphij
Date: Sun Jan 13 04:28:44 2013
New Revision: 245361
URL: http://svnweb.freebsd.org/changeset/base/245361

Log:
  Use the right format string for line buffer.
  
  PR:           bin/174910
  Submitted by: Fabian Keil <fk fabiankeil.de>

Modified:
  head/sbin/sysctl/sysctl.c

Modified: head/sbin/sysctl/sysctl.c
==============================================================================
--- head/sbin/sysctl/sysctl.c   Sun Jan 13 04:14:46 2013        (r245360)
+++ head/sbin/sysctl/sysctl.c   Sun Jan 13 04:28:44 2013        (r245361)
@@ -266,7 +266,7 @@ parse(const char *string, int lineno)
 
                if (!(kind & CTLFLAG_WR)) {
                        if (kind & CTLFLAG_TUN) {
-                               warnx("oid '%s' is a read only tunable%p", 
bufp, line);
+                               warnx("oid '%s' is a read only tunable%s", 
bufp, line);
                                warnx("Tunable values are set in 
/boot/loader.conf");
                        } else
                                warnx("oid '%s' is read only%s", bufp, line);
_______________________________________________
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