diff options
author | Vinson Lee <[email protected]> | 2010-08-21 23:36:30 -0700 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2010-08-21 23:36:30 -0700 |
commit | 3bdbccef2adfc699a737d7d25911004938bbbfcc (patch) | |
tree | 1f31ac79fbe6b2b1183da0f42521569a20d1e024 /src/gallium/auxiliary | |
parent | 0f3b3751b8643352dcc242567b3696bd1505df1d (diff) |
util: Use #ifdef instead of #if.
This is a typo fix of earlier commit 0f3b3751b8643352dcc242567b3696bd1505df1d.
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r-- | src/gallium/auxiliary/util/u_cpu_detect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_cpu_detect.c b/src/gallium/auxiliary/util/u_cpu_detect.c index 5d0b16d28e1..32519b148b6 100644 --- a/src/gallium/auxiliary/util/u_cpu_detect.c +++ b/src/gallium/auxiliary/util/u_cpu_detect.c @@ -73,7 +73,7 @@ #endif -#if DEBUG +#ifdef DEBUG DEBUG_GET_ONCE_BOOL_OPTION(dump_cpu, "GALLIUM_DUMP_CPU", FALSE) #endif |