The 'i' variable being only used for displaying the array of parameters (when debug output is enabled), disable it also to avoid "error: unused variable 'i'".

svn path=/trunk/; revision=58445
This commit is contained in:
Hermès Bélusca-Maïto 2013-03-08 21:22:05 +00:00
parent 5cd9147a13
commit 9883df5d8c

View file

@ -2896,9 +2896,10 @@ DWORD RStartServiceW(
PSERVICE_HANDLE hSvc;
PSERVICE lpService = NULL;
SC_RPC_LOCK Lock = NULL;
DWORD i;
#ifndef NDEBUG
DWORD i;
DPRINT("RStartServiceW(%p %lu %p) called\n", hService, argc, argv);
DPRINT(" argc: %lu\n", argc);
if (argv != NULL)