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:
		
							parent
							
								
									7075ba3097
								
							
						
					
					
						commit
						7534ba0130
					
				| 
						 | 
				
			
			@ -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)
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue