From feffa78bd88403e39fea6918b4af32e049c40f37 Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Wed, 24 Jul 2002 10:12:03 +0000 Subject: [PATCH] itoa() is not portable - switched to ultoa (implemented in xpdev/genwrap.c). --- src/sbbs3/userdat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sbbs3/userdat.c b/src/sbbs3/userdat.c index 57ac2f4175..a062bc5217 100644 --- a/src/sbbs3/userdat.c +++ b/src/sbbs3/userdat.c @@ -888,7 +888,7 @@ void DLLCALL printnodedat(scfg_t* cfg, uint number, node_t* node) printf("performing sysop activities"); break; default: - printf(itoa(node->action,tmp,10)); + printf(ultoa(node->action,tmp,10)); break; } if(!node->connection) printf(" locally"); -- GitLab