Skip to content
Snippets Groups Projects
Commit feffa78b authored by rswindell's avatar rswindell
Browse files

itoa() is not portable - switched to ultoa (implemented in xpdev/genwrap.c).

parent eb9cc57d
Branches
Tags
No related merge requests found
...@@ -888,7 +888,7 @@ void DLLCALL printnodedat(scfg_t* cfg, uint number, node_t* node) ...@@ -888,7 +888,7 @@ void DLLCALL printnodedat(scfg_t* cfg, uint number, node_t* node)
printf("performing sysop activities"); printf("performing sysop activities");
break; break;
default: default:
printf(itoa(node->action,tmp,10)); printf(ultoa(node->action,tmp,10));
break; } break; }
if(!node->connection) if(!node->connection)
printf(" locally"); printf(" locally");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment