aboutsummaryrefslogtreecommitdiff
path: root/fsdev/qemu-fsdev-throttle.h
diff options
context:
space:
mode:
authorGreg Kurz <groug@kaod.org>2019-10-10 11:36:05 +0200
committerGreg Kurz <groug@kaod.org>2019-10-10 11:36:05 +0200
commitea52cdd443840448c198fec48e5a9ea5f40564f0 (patch)
treed88cea8dd8a30f705f01e41492a403e37b2c7274 /fsdev/qemu-fsdev-throttle.h
parentc0da0cb7614db9a6ba6e8f00cea4c86844bb3e22 (diff)
fsdev: Add return value to fsdev_throttle_parse_opts()
It is more convenient to use the return value of the function to notify errors, rather than to be tied up setting up the &local_err boilerplate. Signed-off-by: Greg Kurz <groug@kaod.org>
Diffstat (limited to 'fsdev/qemu-fsdev-throttle.h')
-rw-r--r--fsdev/qemu-fsdev-throttle.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fsdev/qemu-fsdev-throttle.h b/fsdev/qemu-fsdev-throttle.h
index c98e2feab5..a21aecddc7 100644
--- a/fsdev/qemu-fsdev-throttle.h
+++ b/fsdev/qemu-fsdev-throttle.h
@@ -26,7 +26,7 @@ typedef struct FsThrottle {
CoQueue throttled_reqs[2];
} FsThrottle;
-void fsdev_throttle_parse_opts(QemuOpts *, FsThrottle *, Error **);
+int fsdev_throttle_parse_opts(QemuOpts *, FsThrottle *, Error **);
void fsdev_throttle_init(FsThrottle *);