Commit ffc363c5 authored by Ulrich Sibiller's avatar Ulrich Sibiller Committed by Mike Gabriel

Split.c: make nxagentWaitDrawable TEST messages look like all the others

parent e3d749f6
...@@ -734,7 +734,7 @@ void nxagentWaitDrawable(DrawablePtr pDrawable) ...@@ -734,7 +734,7 @@ void nxagentWaitDrawable(DrawablePtr pDrawable)
if (pResource == NULL) if (pResource == NULL)
{ {
#ifdef TEST #ifdef TEST
fprintf(stderr, "++++++nxagentWaitDrawable: WARNING! The drawable at [%p] is already awake.\n", fprintf(stderr, "nxagentWaitDrawable: WARNING! The drawable at [%p] is already awake.\n",
(void *) pDrawable); (void *) pDrawable);
#endif #endif
...@@ -742,7 +742,7 @@ void nxagentWaitDrawable(DrawablePtr pDrawable) ...@@ -742,7 +742,7 @@ void nxagentWaitDrawable(DrawablePtr pDrawable)
} }
#ifdef TEST #ifdef TEST
fprintf(stderr, "++++++nxagentWaitDrawable: Waiting drawable at [%p] with resource [%d].\n", fprintf(stderr, "nxagentWaitDrawable: Waiting drawable at [%p] with resource [%d].\n",
(void *) pDrawable, pResource -> split); (void *) pDrawable, pResource -> split);
#endif #endif
...@@ -786,12 +786,12 @@ void nxagentWaitDrawable(DrawablePtr pDrawable) ...@@ -786,12 +786,12 @@ void nxagentWaitDrawable(DrawablePtr pDrawable)
if (NXDisplayError(nxagentDisplay) == 1) if (NXDisplayError(nxagentDisplay) == 1)
{ {
fprintf(stderr, "++++++nxagentWaitDrawable: WARNING! Display error detected while " fprintf(stderr, "nxagentWaitDrawable: WARNING! Display error detected while "
"waiting for the drawable.\n"); "waiting for the drawable.\n");
} }
else else
{ {
fprintf(stderr, "++++++nxagentWaitDrawable: Drawable at [%p] can now be restarted.\n", fprintf(stderr, "nxagentWaitDrawable: Drawable at [%p] can now be restarted.\n",
(void *) pDrawable); (void *) pDrawable);
} }
...@@ -801,7 +801,7 @@ void nxagentWaitDrawable(DrawablePtr pDrawable) ...@@ -801,7 +801,7 @@ void nxagentWaitDrawable(DrawablePtr pDrawable)
} }
#ifdef TEST #ifdef TEST
fprintf(stderr, "++++++nxagentWaitDrawable: Yielding control to the NX transport.\n"); fprintf(stderr, "nxagentWaitDrawable: Yielding control to the NX transport.\n");
#endif #endif
nxagentWaitEvents(nxagentDisplay, NULL); nxagentWaitEvents(nxagentDisplay, NULL);
......
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