diff options
| author | Brian Paul <brianp@vmware.com> | 2008-12-19 07:33:17 -0700 | 
|---|---|---|
| committer | Brian Paul <brianp@vmware.com> | 2008-12-19 07:33:17 -0700 | 
| commit | 030a7a320cb2c49ff60f3948bd9c4976ca0b0b17 (patch) | |
| tree | 3c08dddcad1e6b1054f604dc8008f736a79f01cf | |
| parent | 59a168d5c9b5f478e4e8bedcd8522e359e98987e (diff) | |
gallium: replace #elif with #else
| -rw-r--r-- | src/gallium/auxiliary/util/u_time.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_time.c b/src/gallium/auxiliary/util/u_time.c index bf7d1d1c8d..f84514165a 100644 --- a/src/gallium/auxiliary/util/u_time.c +++ b/src/gallium/auxiliary/util/u_time.c @@ -111,7 +111,7 @@ util_time_add(const struct util_time *t1,  #elif defined(PIPE_SUBSYSTEM_WINDOWS_MINIPORT)     /* 1 tick = 100 nano seconds. */     t2->counter = t1->counter + usecs * 10; -#elif  +#else     LARGE_INTEGER temp;     LONGLONG freq;     freq = temp.QuadPart;  | 
