Am 25.10.2015 um 22:32 schrieb Paolo Bonzini: > diff --git a/trace/control.h b/trace/control.h > index bfbe560..d2506d4 100644 > --- a/trace/control.h > +++ b/trace/control.h > @@ -157,7 +157,7 @@ static void trace_event_set_state_dynamic(TraceEvent *ev, > bool state); > * > * Returns: Whether the backends could be successfully initialized. > */ > -bool trace_init_backends(const char *file); > +bool trace_init_backends(void); > > /** > * trace_init_events:
This (and the patch before) break qemu-io: /home/cborntra/REPOS/qemu/qemu-io.c: In function 'main': /home/cborntra/REPOS/qemu/qemu-io.c:443:18: error: too many arguments to function 'trace_init_backends' if (!trace_init_backends(optarg, NULL)) { ^ In file included from /home/cborntra/REPOS/qemu/qemu-io.c:26:0: /home/cborntra/REPOS/qemu/trace/control.h:160:6: note: declared here bool trace_init_backends(void); ^ /home/cborntra/REPOS/qemu/rules.mak:57: recipe for target 'qemu-io.o' failed Christian