summary refs log tree commit diff stats
path: root/qemu-nbd.c
diff options
context:
space:
mode:
authorEric Blake <eblake@redhat.com>2024-08-01 16:49:20 -0500
committerEric Blake <eblake@redhat.com>2024-08-08 10:18:22 -0500
commitc719573d71afd38e3ac774e5a331fbaa0fc9f3da (patch)
tree9376fc272c3ddfde239303198d0c9fed947196c8 /qemu-nbd.c
parent75c7f574035622798e9361a942bdfbb0af930f0e (diff)
downloadfocaccia-qemu-c719573d71afd38e3ac774e5a331fbaa0fc9f3da.tar.gz
focaccia-qemu-c719573d71afd38e3ac774e5a331fbaa0fc9f3da.zip
nbd: Minor style and typo fixes
Touch up a comment with the wrong type name, and an over-long line,
both noticed while working on upcoming patches.

Signed-off-by: Eric Blake <eblake@redhat.com>
Message-ID: <20240807174943.771624-10-eblake@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Diffstat (limited to 'qemu-nbd.c')
-rw-r--r--qemu-nbd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/qemu-nbd.c b/qemu-nbd.c
index d7b3ccab21..8e104ef22c 100644
--- a/qemu-nbd.c
+++ b/qemu-nbd.c
@@ -588,7 +588,8 @@ int main(int argc, char **argv)
     pthread_t client_thread;
     const char *fmt = NULL;
     Error *local_err = NULL;
-    BlockdevDetectZeroesOptions detect_zeroes = BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF;
+    BlockdevDetectZeroesOptions detect_zeroes =
+        BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF;
     QDict *options = NULL;
     const char *export_name = NULL; /* defaults to "" later for server mode */
     const char *export_description = NULL;