Commit 23cbb01c authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

widl: Remove arguments from writing calls that don't use them (Coverity).

parent 2de886dd
...@@ -192,11 +192,11 @@ static void write_namespace_end(FILE *header, struct namespace *namespace) ...@@ -192,11 +192,11 @@ static void write_namespace_end(FILE *header, struct namespace *namespace)
{ {
if(is_global_namespace(namespace)) { if(is_global_namespace(namespace)) {
if(use_abi_namespace) if(use_abi_namespace)
write_line(header, -1, "}", namespace->name); write_line(header, -1, "}");
return; return;
} }
write_line(header, -1, "}", namespace->name); write_line(header, -1, "}");
write_namespace_end(header, namespace->parent); write_namespace_end(header, namespace->parent);
} }
......
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