Commit d2218eb9 authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

ntdll: Use intended variable.

parent 8896cb8e
......@@ -755,7 +755,7 @@ static void test_ulonglongtow(void)
if (0) {
/* Crashes on XP and W2K3 */
result = p_i64tow(ulong2str[0].value, NULL, 10);
result = p_i64tow(ulonglong2str[0].value, NULL, 10);
ok(result == NULL,
"(test d): _i64tow(0x%x%08x, NULL, 10) has result %p, expected: NULL\n",
(DWORD)(ulonglong2str[0].value >> 32), (DWORD)ulonglong2str[0].value, result);
......@@ -769,7 +769,7 @@ static void test_ulonglongtow(void)
if (0) {
/* Crashes on XP and W2K3 */
result = p_ui64tow(ulong2str[0].value, NULL, 10);
result = p_ui64tow(ulonglong2str[0].value, NULL, 10);
ok(result == NULL,
"(test e): _ui64tow(0x%x%08x, NULL, 10) has result %p, expected: NULL\n",
(DWORD)(ulonglong2str[0].value >> 32), (DWORD)ulonglong2str[0].value, result);
......
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