From d4ba169beaa81bd59661ba6c3c6c73244022a566 Mon Sep 17 00:00:00 2001 From: Steffen Schulz Date: Tue, 10 May 2022 17:02:30 +0200 Subject: [PATCH] Remove superfluous printf Extra printf just spams the console on startup.. --- nyx/snapshot/devices/state_reallocation.c | 1 - 1 file changed, 1 deletion(-) diff --git a/nyx/snapshot/devices/state_reallocation.c b/nyx/snapshot/devices/state_reallocation.c index c9edfa7433..120dccd619 100644 --- a/nyx/snapshot/devices/state_reallocation.c +++ b/nyx/snapshot/devices/state_reallocation.c @@ -348,7 +348,6 @@ static void add_get(state_reallocation_t* self, void* fptr, void* opaque, size_t qemu_get_buffer(f, (uint8_t*)data, size); } else if(!strcmp(name, "virtio")){ - fprintf(stderr, "WARNING: ATTEMPTING FAST GET for %s\n", name); qemu_file_skip(f, size * -1); handler = fast_virtio_device_get; data = malloc(sizeof(uint8_t)*size);