Commit 67432ac2 authored by Ulrich Sibiller's avatar Ulrich Sibiller Committed by Mike Gabriel

Render.c: improve Bool usage

parent f91f02d9
...@@ -2784,7 +2784,7 @@ void nxagentReconnectGlyphSet(void* p0, XID x1, void *p2) ...@@ -2784,7 +2784,7 @@ void nxagentReconnectGlyphSet(void* p0, XID x1, void *p2)
Bool nxagentReconnectAllGlyphSet(void *p) Bool nxagentReconnectAllGlyphSet(void *p)
{ {
Bool success = TRUE; Bool success = True;
int i; int i;
nxagentQueryFormats(); nxagentQueryFormats();
...@@ -2826,7 +2826,7 @@ void nxagentReconnectPicture(void * p0, XID x1, void *p2) ...@@ -2826,7 +2826,7 @@ void nxagentReconnectPicture(void * p0, XID x1, void *p2)
* and that the involved objects are valid. * and that the involved objects are valid.
*/ */
if (*pBool == 0 || pPicture == NULL || if (!*pBool || pPicture == NULL ||
nxagentPicture(pPicture) != 0) nxagentPicture(pPicture) != 0)
{ {
return; return;
...@@ -2959,7 +2959,7 @@ Bool nxagentReconnectAllPicture(void *p) ...@@ -2959,7 +2959,7 @@ Bool nxagentReconnectAllPicture(void *p)
fprintf(stderr, "nxagentReconnectAllPicture: Going to recreate all pictures.\n"); fprintf(stderr, "nxagentReconnectAllPicture: Going to recreate all pictures.\n");
#endif #endif
for (i = 0, r = 1; i < MAXCLIENTS; i++) for (i = 0, r = True; i < MAXCLIENTS; i++)
{ {
if (clients[i]) if (clients[i])
{ {
...@@ -2967,7 +2967,7 @@ Bool nxagentReconnectAllPicture(void *p) ...@@ -2967,7 +2967,7 @@ Bool nxagentReconnectAllPicture(void *p)
#ifdef WARNING #ifdef WARNING
if (r == False) if (!r)
{ {
fprintf(stderr, "nxagentReconnectAllPicture: WARNING! Failed to recreate " fprintf(stderr, "nxagentReconnectAllPicture: WARNING! Failed to recreate "
"picture for client [%d].\n", i); "picture for client [%d].\n", i);
...@@ -3015,7 +3015,7 @@ Bool nxagentDisconnectAllPicture(void) ...@@ -3015,7 +3015,7 @@ Bool nxagentDisconnectAllPicture(void)
fprintf(stderr, "nxagentDisconnectAllPicture.\n"); fprintf(stderr, "nxagentDisconnectAllPicture.\n");
#endif #endif
for (i = 0, r = 1; i < MAXCLIENTS; i++) for (i = 0, r = True; i < MAXCLIENTS; i++)
{ {
if (clients[i]) if (clients[i])
{ {
...@@ -3023,7 +3023,7 @@ Bool nxagentDisconnectAllPicture(void) ...@@ -3023,7 +3023,7 @@ Bool nxagentDisconnectAllPicture(void)
#ifdef WARNING #ifdef WARNING
if (r == False) if (!r)
{ {
fprintf(stderr, "nxagentDisconnectAllPicture: WARNING! Failed to disconnect " fprintf(stderr, "nxagentDisconnectAllPicture: WARNING! Failed to disconnect "
"picture for client [%d].\n", i); "picture for client [%d].\n", i);
......
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