Message ID | 20241017113344.883424-19-berrange@redhat.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | include: move include/qapi/qmp/ to include/qobject/ | expand |
On Thu, Oct 17, 2024 at 12:33:30PM +0100, Daniel P. Berrangé wrote: > Date: Thu, 17 Oct 2024 12:33:30 +0100 > From: "Daniel P. Berrangé" <berrange@redhat.com> > Subject: [PATCH v2 18/31] replay: adapt to new import path for qobject data > type headers > > The qobject data type headers have moved from qapi/qmp/ to > qobject/. > > Signed-off-by: Daniel P. Berrangé <berrange@redhat.com> > --- > replay/replay-debugging.c | 2 +- > replay/replay-snapshot.c | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > Reviewed-by: Zhao Liu <zhao1.liu@intel.com>
diff --git a/replay/replay-debugging.c b/replay/replay-debugging.c index 82c66fff26..fd46a948d2 100644 --- a/replay/replay-debugging.c +++ b/replay/replay-debugging.c @@ -17,7 +17,7 @@ #include "monitor/hmp.h" #include "monitor/monitor.h" #include "qapi/qapi-commands-replay.h" -#include "qapi/qmp/qdict.h" +#include "qobject/qdict.h" #include "qemu/timer.h" #include "block/snapshot.h" #include "migration/snapshot.h" diff --git a/replay/replay-snapshot.c b/replay/replay-snapshot.c index ccb4d89dda..37394b626e 100644 --- a/replay/replay-snapshot.c +++ b/replay/replay-snapshot.c @@ -14,7 +14,7 @@ #include "sysemu/replay.h" #include "replay-internal.h" #include "monitor/monitor.h" -#include "qapi/qmp/qstring.h" +#include "qobject/qstring.h" #include "qemu/error-report.h" #include "migration/vmstate.h" #include "migration/snapshot.h"
The qobject data type headers have moved from qapi/qmp/ to qobject/. Signed-off-by: Daniel P. Berrangé <berrange@redhat.com> --- replay/replay-debugging.c | 2 +- replay/replay-snapshot.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)