From aa42ebb18f6607d89b6d47eff8b6fa5238768dea Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Mon, 31 May 2010 14:04:24 +0000 Subject: [PATCH] [OSKITTCP] Improve the reactos-hack, by changing the ";" after an "if (...)" to "(void)0;" to tell the compiler that we intentionally do nothing in the if body. svn path=/trunk/; revision=47493 --- reactos/lib/drivers/oskittcp/oskittcp/rtsock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/lib/drivers/oskittcp/oskittcp/rtsock.c b/reactos/lib/drivers/oskittcp/oskittcp/rtsock.c index 5654b7b41f6..b7caadc5eab 100644 --- a/reactos/lib/drivers/oskittcp/oskittcp/rtsock.c +++ b/reactos/lib/drivers/oskittcp/oskittcp/rtsock.c @@ -277,7 +277,7 @@ route_output(m, so) #ifndef __REACTOS__ ifp = ifa->ifa_ifp; #else - ; + (void)0; #endif if (ifa) { register struct ifaddr *oifa = rt->rt_ifa;