From 6eb6d65bcc61aae0c5fb69a6a2324d33715f79e1 Mon Sep 17 00:00:00 2001 From: Brandon Turner Date: Sat, 8 Oct 2005 18:07:45 +0000 Subject: [PATCH] DisplayBuffer is only used when DBG=1 svn path=/trunk/; revision=18349 --- reactos/apps/utils/net/ping/ping.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/reactos/apps/utils/net/ping/ping.c b/reactos/apps/utils/net/ping/ping.c index f68b2636853..0f89f7dafb3 100644 --- a/reactos/apps/utils/net/ping/ping.c +++ b/reactos/apps/utils/net/ping/ping.c @@ -104,7 +104,7 @@ LARGE_INTEGER TicksPerMs; /* Ticks per millisecond */ LARGE_INTEGER TicksPerUs; /* Ticks per microsecond */ BOOL UsePerformanceCounter; - +#ifdef DBG /* Display the contents of a buffer */ static VOID DisplayBuffer( PVOID Buffer, @@ -123,6 +123,7 @@ static VOID DisplayBuffer( printf("%02X ", (p[i]) & 0xFF); } } +#endif /* DBG */ /* Display usage information on screen */ static VOID Usage(VOID)