Andrew Talbot : msvcrt: Write-strings warnings fix.
Module: wine Branch: refs/heads/master Commit: 5ebf4f5b4e1dbb63f36ce1e10f9f4899d21cbf03 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=5ebf4f5b4e1dbb63f36ce1e1... Author: Andrew Talbot <Andrew.Talbot(a)talbotville.com> Date: Mon Jun 5 20:50:47 2006 +0100 msvcrt: Write-strings warnings fix. --- dlls/msvcrt/wcs.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/msvcrt/wcs.c b/dlls/msvcrt/wcs.c index ce63206..bb44390 100644 --- a/dlls/msvcrt/wcs.c +++ b/dlls/msvcrt/wcs.c @@ -431,7 +431,7 @@ static void pf_rebuild_format_string( ch 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];
participants (1)
-
Alexandre Julliard