Commit 03d1a9c6 authored by Rémi Bernon's avatar Rémi Bernon Committed by Alexandre Julliard

ntdll/tests: Fix some format-overflow warnings.

parent ab3ca36b
...@@ -737,7 +737,7 @@ done: ...@@ -737,7 +737,7 @@ done:
static void set_up_case_test(const char *testdir) static void set_up_case_test(const char *testdir)
{ {
BOOL ret; BOOL ret;
char buf[MAX_PATH]; char buf[MAX_PATH + 5];
HANDLE h; HANDLE h;
ret = CreateDirectoryA(testdir, NULL); ret = CreateDirectoryA(testdir, NULL);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment