msvcrt: Write-strings warnings fix.

This commit is contained in:
Andrew Talbot 2006-06-05 20:50:47 +01:00 committed by Alexandre Julliard
parent 71a69dd817
commit 5ebf4f5b4e
1 changed files with 1 additions and 1 deletions

View File

@ -431,7 +431,7 @@ static void pf_rebuild_format_string( char *p, pf_flags *flags )
static void pf_integer_conv( char *buf, pf_flags *flags, LONGLONG x )
{
unsigned int base;
char *digits;
const char *digits;
int i, j, k;
char tmp[40];