Author: neel
Date: Fri Apr 23 01:34:01 2010
New Revision: 207089
URL: http://svn.freebsd.org/changeset/base/207089

Log:
  Fix compilation error.
  
  tick.c:298:5: error: "KDTRACE_HOOKS" is not defined

Modified:
  head/sys/mips/mips/tick.c

Modified: head/sys/mips/mips/tick.c
==============================================================================
--- head/sys/mips/mips/tick.c   Fri Apr 23 01:22:48 2010        (r207088)
+++ head/sys/mips/mips/tick.c   Fri Apr 23 01:34:01 2010        (r207089)
@@ -295,7 +295,7 @@ clock_intr(void *arg)
         */
        if (delta > cycles_per_hz)
                delta = cycles_per_hz;
-#if KDTRACE_HOOKS
+#ifdef KDTRACE_HOOKS
        /*
         * If the DTrace hooks are configured and a callback function
         * has been registered, then call it to process the high speed
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to