mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
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:
parent
5cd9147a13
commit
9883df5d8c
1 changed files with 2 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue