From: Michal Privoznik Date: Wed, 12 Nov 2025 08:50:07 +0000 (+0100) Subject: gendispatch.pl: Produce newline at end of block X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5bd1785b24d6bcec8aa401e9329c0c9187c29924;p=thirdparty%2Flibvirt.git gendispatch.pl: Produce newline at end of block After each block that's generated into viraccessapicheck.c there should be a new line. Format it into generated source file. Signed-off-by: Michal Privoznik Reviewed-by: Ján Tomko --- diff --git a/src/rpc/gendispatch.pl b/src/rpc/gendispatch.pl index 4d385927aa..252562ccfd 100755 --- a/src/rpc/gendispatch.pl +++ b/src/rpc/gendispatch.pl @@ -2214,7 +2214,7 @@ elsif ($mode eq "client") { print " virResetLastError();\n"; print " return $fail;\n"; } - print " }"; + print " }\n"; print "\n"; }