qapi: fix build issue due to missing newline in generated header

Fixes a build issue on RHEL5, and potentially other distros, where gcc
will generate an error due to us not writing a trailing "\n" when
generating *qmp-commands.h

Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
Michael Roth 2011-08-10 13:10:51 -05:00 committed by Anthony Liguori
parent 7075ba3097
commit 7534ba0130

View file

@ -375,7 +375,7 @@ def gen_command_def_prologue(prefix="", proxy=False):
ret = gen_marshal_input(cmd['command'], arglist, ret_type) + "\n"
fdef.write(ret)
fdecl.write("\n#endif");
fdecl.write("\n#endif\n");
ret = gen_registry(commands)
fdef.write(ret)