diff options
| author | Brian Paul <brianp@vmware.com> | 2008-12-19 07:32:52 -0700 | 
|---|---|---|
| committer | Brian Paul <brianp@vmware.com> | 2008-12-19 07:32:52 -0700 | 
| commit | 42f7fd7d8189ceeb6d1baef5e23959c95f917ddc (patch) | |
| tree | f37fc0842d6bef9bf4f88d2d096e2e8ec31ad58b | |
| parent | db99ca3bc999137e6d523aa24e13cc5cfbb2b52c (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 57b80e5604..dde2c74fa8 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; | 
