gallium: replace #elif with #else
authorBrian Paul <brianp@vmware.com>
Fri, 19 Dec 2008 14:32:52 +0000 (07:32 -0700)
committerBrian Paul <brianp@vmware.com>
Fri, 19 Dec 2008 14:32:52 +0000 (07:32 -0700)
src/gallium/auxiliary/util/u_time.c

index 57b80e56042f91af5214fc2f6d0248795f5a9fa0..dde2c74fa83ca8f0be4874eeac2129a3170d5ea6 100644 (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;