From: Brian Paul Date: Fri, 19 Dec 2008 14:32:52 +0000 (-0700) Subject: gallium: replace #elif with #else X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=42f7fd7d8189ceeb6d1baef5e23959c95f917ddc;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 57b80e56042..dde2c74fa83 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;