Skip to content
Snippets Groups Projects
Commit 4014c74e authored by Johann Messner's avatar Johann Messner Committed by Alexandre Julliard
Browse files

Fixed bug in _ultoa.

parent 20560f45
No related branches found
No related tags found
No related merge requests found
......@@ -65,7 +65,7 @@ LPSTR __cdecl _ultoa( unsigned long x, LPSTR buf, INT radix )
*--p = (rem <= 9) ? rem + '0' : rem + 'a' - 10;
x /= radix;
} while (x);
strcpy( buf, p + 1 );
strcpy( buf, p );
return buf;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment