Commit 4460183a authored by Ulrich Sibiller's avatar Ulrich Sibiller

Atoms.c: improve debug output

parent 8b0bb28e
...@@ -708,7 +708,7 @@ XlibAtom nxagentLocalToRemoteAtom(Atom local) ...@@ -708,7 +708,7 @@ XlibAtom nxagentLocalToRemoteAtom(Atom local)
if (current->string) if (current->string)
fprintf(stderr, "%s: local [%d] -> remote [%d (%s)]\n", __func__, local, current->remote, current->string); fprintf(stderr, "%s: local [%d] -> remote [%d (%s)]\n", __func__, local, current->remote, current->string);
else else
fprintf(stderr, "%s: local [%d] -> remote [%d]\n", __func__, local, current->remote); fprintf(stderr, "%s: local [%d] -> remote [%d] (no string cached)\n", __func__, local, current->remote);
#endif #endif
return current->remote; return current->remote;
......
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