| Submitter | Michael Roth |
|---|---|
| Date | Aug. 11, 2011, 8:37 p.m. |
| Message ID | <1313095061-25060-1-git-send-email-mdroth@linux.vnet.ibm.com> |
| Download | mbox | patch |
| Permalink | /patch/109682/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/scripts/qapi-commands.py b/scripts/qapi-commands.py index 9ad4c54..bf61740 100644 --- a/scripts/qapi-commands.py +++ b/scripts/qapi-commands.py @@ -375,7 +375,7 @@ if dispatch_type == "sync": 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)
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> --- scripts/qapi-commands.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)