diff options
author | Ulrich Sibiller <uli42@gmx.de> | 2021-01-04 14:57:32 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-01-16 00:23:39 +0100 |
commit | 669299de3594e46fd67a84066be4b78f83cb6f00 (patch) | |
tree | e4cd68c1b03e0eff8d130ad8dc53f94cfcd77afa /nx-X11 | |
parent | 12b96fd9abb9289039cb71a03703dcfc503f61e1 (diff) | |
download | nx-libs-669299de3594e46fd67a84066be4b78f83cb6f00.tar.gz nx-libs-669299de3594e46fd67a84066be4b78f83cb6f00.tar.bz2 nx-libs-669299de3594e46fd67a84066be4b78f83cb6f00.zip |
Window.c: suppress warning
This used to be printed only in TEST mode. Some while ago I had
changed that to WARNING (because it is a warning...). However, this
happens e.g. when running the xscreensaver vfeedback module and it
does not look like it is a problem at all. So let's suppress this
warning again and leave it to the TEST mode as it used to be.
Diffstat (limited to 'nx-X11')
-rw-r--r-- | nx-X11/programs/Xserver/hw/nxagent/Window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nx-X11/programs/Xserver/hw/nxagent/Window.c b/nx-X11/programs/Xserver/hw/nxagent/Window.c index 841ee3888..d95f8f3ed 100644 --- a/nx-X11/programs/Xserver/hw/nxagent/Window.c +++ b/nx-X11/programs/Xserver/hw/nxagent/Window.c @@ -3922,7 +3922,7 @@ StoringPixmapPtr nxagentFindItemBSPixmapList(unsigned long pixmapId) } } - #ifdef WARNING + #ifdef TEST fprintf(stderr, "%s: WARNING! Item not found.\n", __func__); #endif |