gdi: Change the metafile.c test to use sprintf instead of snprintf for portability.

This commit is contained in:
Jeff Latimer 2006-09-08 23:10:00 +10:00 committed by Alexandre Julliard
parent 33f047fe56
commit 9e9095fe7a
1 changed files with 1 additions and 1 deletions

View File

@ -1354,7 +1354,7 @@ static void checkConvertedFrameAndBounds(UINT buffer_size, BYTE * buffer, BOOL m
case MM_ISOTROPIC: mm_str = "MM_ISOTROPIC"; break;
default: mm_str = "Unexpected";
}
snprintf(buf, 64, "mm=%s, xExt=%ld, yExt=%ld", mm_str, xExt, yExt);
sprintf(buf, "mm=%s, xExt=%ld, yExt=%ld", mm_str, xExt, yExt);
msg = buf;
}