From: Brian Paul Date: Fri, 19 Dec 2008 14:33:17 +0000 (-0700) Subject: gallium: replace #elif with #else X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=030a7a320cb2c49ff60f3948bd9c4976ca0b0b17;p=mesa.git gallium: replace #elif with #else --- diff --git a/src/gallium/auxiliary/util/u_time.c b/src/gallium/auxiliary/util/u_time.c index bf7d1d1c8d5..f84514165a2 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;