Browse Source

gallium: replace #elif with #else

tags/mesa_20090313
Brian Paul 16 years ago
parent
commit
030a7a320c
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/gallium/auxiliary/util/u_time.c

+ 1
- 1
src/gallium/auxiliary/util/u_time.c View File

@@ -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;

Loading…
Cancel
Save