summaryrefslogtreecommitdiff
path: root/replay
diff options
context:
space:
mode:
authorAlex Bennée <alex.bennee@linaro.org>2017-03-24 15:21:55 +0000
committerAlex Bennée <alex.bennee@linaro.org>2017-03-28 10:52:50 +0100
commit5b12c163c830081cbb78e2de3b42c5fe1b73e74e (patch)
tree6e058e38a504b6aae13dcd671f94587922f71f55 /replay
parent8cfef89271e27e4a7cd047835dc8161fad50bc5a (diff)
downloadqemu-5b12c163c830081cbb78e2de3b42c5fe1b73e74e.tar.gz
replay/replay.c: bump REPLAY_VERSION
A previous commit (3d4d16f4) added support for audio record/playback. However this breaks the logfile ABI due to the re-ordering of the ReplayEvents enum. The REPLAY_VERSION check is meant to prevent you from using old log files in newer QEMUs but this is currently broken. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru> Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'replay')
-rw-r--r--replay/replay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/replay/replay.c b/replay/replay.c
index 78e2a7e570..9e0724e756 100644
--- a/replay/replay.c
+++ b/replay/replay.c
@@ -22,7 +22,7 @@
/* Current version of the replay mechanism.
Increase it when file format changes. */
-#define REPLAY_VERSION 0xe02005
+#define REPLAY_VERSION 0xe02006
/* Size of replay log header */
#define HEADER_SIZE (sizeof(uint32_t) + sizeof(uint64_t))