svn commit: r308482 - stable/10/sys/dev/cpuctl

Andriy Gapon avg at FreeBSD.org
Thu Nov 10 11:14:53 UTC 2016


Author: avg
Date: Thu Nov 10 11:14:51 2016
New Revision: 308482
URL: https://svnweb.freebsd.org/changeset/base/308482

Log:
  MFC r308225: dev/cpuctl: put debug output under CPUCTL_DEBUG rather than DEBUG

Modified:
  stable/10/sys/dev/cpuctl/cpuctl.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/dev/cpuctl/cpuctl.c
==============================================================================
--- stable/10/sys/dev/cpuctl/cpuctl.c	Thu Nov 10 11:14:46 2016	(r308481)
+++ stable/10/sys/dev/cpuctl/cpuctl.c	Thu Nov 10 11:14:51 2016	(r308482)
@@ -57,7 +57,7 @@ static d_ioctl_t cpuctl_ioctl;
 
 #define	CPUCTL_VERSION 1
 
-#ifdef DEBUG
+#ifdef CPUCTL_DEBUG
 # define	DPRINTF(format,...) printf(format, __VA_ARGS__);
 #else
 # define	DPRINTF(...)


More information about the svn-src-all mailing list