Commit f3281626 authored by Hugh McMaster's avatar Hugh McMaster Committed by Alexandre Julliard

reg: Do not print a line break after querying a registry key.

parent c809f946
......@@ -287,10 +287,6 @@ static int query_all(HKEY hkey, WCHAR *path, BOOL recurse)
}
free(subkey_name);
if (i && !recurse)
output_string(newlineW);
return 0;
}
......
......@@ -225,7 +225,7 @@ static void test_query(void)
read_reg_output("reg query HKCU\\" KEY_BASE, buf, sizeof(buf), &r);
ok(r == REG_EXIT_SUCCESS, "got exit code %d, expected 0\n", r);
compare_query(buf, test3, FALSE, TODO_REG_COMPARE);
compare_query(buf, test3, FALSE, 0);
add_value(subkey, "Test3", REG_SZ, "Some string data", 16);
dword = 0xabc;
......
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