gallium: replace #elif with #else

This commit is contained in:
Brian Paul 2008-12-19 07:32:52 -07:00
parent db99ca3bc9
commit 42f7fd7d81

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;