diff options
author | Jens Axboe <axboe@kernel.dk> | 2020-03-04 12:28:22 -0700 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2020-03-04 12:28:22 -0700 |
commit | 122f64b216caecf78c3c1c6e4c50789e33104c0d (patch) | |
tree | 1a25a8460f5faf444c7b8ae31e73ee5b158315f0 /test | |
parent | 3fb377e7efbfec8ae5f0f6f8fa7b2fc2987e90b6 (diff) | |
download | liburing-fd-select.tar.gz liburing-fd-select.tar.bz2 |
test/orc: soft fail if filename isn't givenfd-select
Otherwise the test suite complains.
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'test')
-rw-r--r-- | test/orc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -79,7 +79,7 @@ int main(int argc, char *argv[]) if (argc < 2) { fprintf(stderr, "%s: <file>\n", argv[0]); - return 1; + return 0; } ret = io_uring_queue_init(8, &ring, 0); |