Commit 47ed171a authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

rpcrt4: Use BOOL type where appropriate.

parent e780ee58
...@@ -390,7 +390,8 @@ static RPC_STATUS RPC_UuidGetNodeAddress(BYTE *address) ...@@ -390,7 +390,8 @@ static RPC_STATUS RPC_UuidGetNodeAddress(BYTE *address)
*/ */
RPC_STATUS WINAPI UuidCreateSequential(UUID *Uuid) RPC_STATUS WINAPI UuidCreateSequential(UUID *Uuid)
{ {
static int initialised, count; static BOOL initialised;
static int count;
ULONGLONG time; ULONGLONG time;
static ULONGLONG timelast; static ULONGLONG timelast;
...@@ -409,7 +410,7 @@ RPC_STATUS WINAPI UuidCreateSequential(UUID *Uuid) ...@@ -409,7 +410,7 @@ RPC_STATUS WINAPI UuidCreateSequential(UUID *Uuid)
sequence &= 0x1fff; sequence &= 0x1fff;
status = RPC_UuidGetNodeAddress(address); status = RPC_UuidGetNodeAddress(address);
initialised = 1; initialised = TRUE;
} }
/* Generate time element of the UUID. Account for going faster /* Generate time element of the UUID. Account for going faster
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment