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

Atoms.c: fix wrong variable reference

parent 6dd6e695
...@@ -670,7 +670,7 @@ Atom nxagentLocalToRemoteAtom(Atom local) ...@@ -670,7 +670,7 @@ Atom nxagentLocalToRemoteAtom(Atom local)
if (!ValidAtom(local)) if (!ValidAtom(local))
{ {
#ifdef DEBUG #ifdef DEBUG
fprintf(stderr, "%s: local [%d] is no valid - returning None\n", __func__, remote); fprintf(stderr, "%s: local [%d] is no valid - returning None\n", __func__, local);
#endif #endif
return None; return None;
} }
......
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