Commit defc1d87 authored by Alexandre Julliard's avatar Alexandre Julliard

widl: Add missing '\n' on error message.

parent ec636f15
...@@ -1428,8 +1428,7 @@ static size_t write_typeformatstring_var(FILE *file, int indent, const func_t *f ...@@ -1428,8 +1428,7 @@ static size_t write_typeformatstring_var(FILE *file, int indent, const func_t *f
if (pointer_attr) if (pointer_attr)
{ {
if (! ptr_level) if (! ptr_level)
error("'%s': pointer attribute applied to non-pointer type", error("'%s': pointer attribute applied to non-pointer type\n", var->name);
var->name);
pointer_type = pointer_attr; pointer_type = pointer_attr;
} }
else else
......
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