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

index bf7d1d1c8d5423c3f6fa22d66eff00d06bb43c4a..f84514165a289361c015762a635dd2a1356d8cba 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;