diff options
author | neel <neel@FreeBSD.org> | 2010-04-23 01:34:01 +0000 |
---|---|---|
committer | neel <neel@FreeBSD.org> | 2010-04-23 01:34:01 +0000 |
commit | ea6f8179e3f61b5c911eba8df99960f061b3ac22 (patch) | |
tree | adc24beaac13b14e29af826c786a4a240479b3a7 /sys/mips | |
parent | 2b8346aabd349cd3ecc65ef9df6d44d6bf48a2aa (diff) | |
download | FreeBSD-src-ea6f8179e3f61b5c911eba8df99960f061b3ac22.zip FreeBSD-src-ea6f8179e3f61b5c911eba8df99960f061b3ac22.tar.gz |
Fix compilation error.
tick.c:298:5: error: "KDTRACE_HOOKS" is not defined
Diffstat (limited to 'sys/mips')
-rw-r--r-- | sys/mips/mips/tick.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/mips/mips/tick.c b/sys/mips/mips/tick.c index 9a9108c..5931a5b 100644 --- a/sys/mips/mips/tick.c +++ b/sys/mips/mips/tick.c @@ -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 |