diff options
Diffstat (limited to 'hw')
-rw-r--r-- | hw/virtio-9p.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/virtio-9p.c b/hw/virtio-9p.c index 4586cce..867fcfa 100644 --- a/hw/virtio-9p.c +++ b/hw/virtio-9p.c @@ -3697,8 +3697,8 @@ VirtIODevice *virtio_9p_init(DeviceState *dev, V9fsConf *conf) if (!fse) { /* We don't have a fsdev identified by fsdev_id */ - fprintf(stderr, "Virtio-9p device couldn't find fsdev " - "with the id %s\n", conf->fsdev_id); + fprintf(stderr, "Virtio-9p device couldn't find fsdev with the " + "id = %s\n", conf->fsdev_id ? conf->fsdev_id : "NULL"); exit(1); } |