M2: ntoab

This commit is contained in:
Jan Nieuwenhuizen 2019-10-26 09:13:49 +02:00
parent 529156c393
commit 920a103344
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ char *__itoa_buf;
char *
ntoab (int x, int base, int signed_p)
{
if (! __itoa_buf)
if (__itoa_buf == 0)
__itoa_buf = malloc (20);
char *buf = __itoa_buf;