qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH STABLE] qapi: fix build issue due to missing new


From: Anthony Liguori
Subject: Re: [Qemu-devel] [PATCH STABLE] qapi: fix build issue due to missing newline in generated header
Date: Fri, 12 Aug 2011 08:45:47 -0500
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.17) Gecko/20110516 Lightning/1.0b2 Thunderbird/3.1.10

On 08/10/2011 01:10 PM, Michael Roth wrote:
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<address@hidden>

Applied to master.  Thanks.

Regards,

Anthony Liguori

---
  scripts/qapi-commands.py |    2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)

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)





reply via email to

[Prev in Thread] Current Thread [Next in Thread]