services: Use BOOL type where appropriate.

This commit is contained in:
Frédéric Delanoy 2013-10-09 00:06:17 +02:00 committed by Alexandre Julliard
parent 8afd655a62
commit debd1346b0
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ DWORD service_kill_timeout = 60000;
static DWORD default_preshutdown_timeout = 180000;
static void *env = NULL;
static const int is_win64 = (sizeof(void *) > sizeof(int));
static const BOOL is_win64 = (sizeof(void *) > sizeof(int));
static const WCHAR SZ_LOCAL_SYSTEM[] = {'L','o','c','a','l','S','y','s','t','e','m',0};