mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 16:01:53 +00:00
[CRT_APITEST]
- Disable a check for crtdll - Fix an MSVC warning svn path=/trunk/; revision=70453
This commit is contained in:
parent
1d88ccffb2
commit
66908136d4
2 changed files with 8 additions and 3 deletions
|
@ -14,7 +14,9 @@
|
|||
#include <ndk/mmfuncs.h>
|
||||
#include <ndk/rtlfuncs.h>
|
||||
|
||||
#ifdef __GNUC__
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning(disable:4778) // unterminated format string '%'
|
||||
#else
|
||||
#pragma GCC diagnostic ignored "-Wformat"
|
||||
#pragma GCC diagnostic ignored "-Wformat-zero-length"
|
||||
#pragma GCC diagnostic ignored "-Wnonnull"
|
||||
|
@ -177,7 +179,7 @@ START_TEST(sprintf)
|
|||
Length = sprintf(Buffer, "%.4s", "hello");
|
||||
ok_str(Buffer, "hell");
|
||||
ok_int(Length, 4);
|
||||
|
||||
|
||||
StartSeh()
|
||||
Length = sprintf(Buffer, "%.*s", -1, "hello");
|
||||
#ifdef TEST_USER32
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue