daemon: Honor error variable name change in the generator

Commit 36b652138b renamed err to rerr, do the same in the generator.
This commit is contained in:
Matthias Bolte 2011-04-22 11:01:15 +02:00
parent 9b8543b6ad
commit 56eb2081f5
3 changed files with 204 additions and 204 deletions

View File

@ -7,6 +7,6 @@ static int qemuDispatchMonitorCommand(
struct qemud_client *client,
virConnectPtr conn,
remote_message_header *hdr,
remote_error *err,
remote_error *rerr,
qemu_monitor_command_args *args,
qemu_monitor_command_ret *ret);

File diff suppressed because it is too large Load Diff

View File

@ -132,7 +132,7 @@ elsif ($opt_p) {
print " struct qemud_client *client,\n";
print " virConnectPtr conn,\n";
print " remote_message_header *hdr,\n";
print " remote_error *err,\n";
print " remote_error *rerr,\n";
print " $calls{$_}->{args} *args,\n";
print " $calls{$_}->{ret} *ret);\n";
}