diff options
author | Ulrich Sibiller <uli42@gmx.de> | 2020-08-03 16:26:12 +0200 |
---|---|---|
committer | Ulrich Sibiller <uli42@gmx.de> | 2021-01-15 19:50:35 +0100 |
commit | e991dbae988766707e9506ec08d5682416f6eb4a (patch) | |
tree | eabd5ca2ff4cac605bcaeabe0937a6e77471d70d /nx-X11/programs/Xserver/hw/nxagent/Atoms.c | |
parent | 1529b32174867acaffc952b77cb404180fad17f1 (diff) | |
download | nx-libs-e991dbae988766707e9506ec08d5682416f6eb4a.tar.gz nx-libs-e991dbae988766707e9506ec08d5682416f6eb4a.tar.bz2 nx-libs-e991dbae988766707e9506ec08d5682416f6eb4a.zip |
Atoms.c: cosmetics in nxagentWriteAtom()
Diffstat (limited to 'nx-X11/programs/Xserver/hw/nxagent/Atoms.c')
-rw-r--r-- | nx-X11/programs/Xserver/hw/nxagent/Atoms.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nx-X11/programs/Xserver/hw/nxagent/Atoms.c b/nx-X11/programs/Xserver/hw/nxagent/Atoms.c index af8b31dfd..2daad061e 100644 --- a/nx-X11/programs/Xserver/hw/nxagent/Atoms.c +++ b/nx-X11/programs/Xserver/hw/nxagent/Atoms.c @@ -405,12 +405,13 @@ static void nxagentWriteAtom(Atom local, XlibAtom remote, const char *string) #ifdef WARNING if (s == NULL) { - fprintf(stderr, "nxagentWriteAtom: Malloc failed.\n"); + fprintf(stderr, "%s: Malloc failed.\n", __func__); } #endif if (privLastAtom == privAtomMapSize) { + /* will issue a fatal error, therefore no further check here */ nxagentExpandCache(); } |