diff mbox series

test/io_uring_setup: Fix include path to syscall.h

Message ID 20230630023937.509981-1-dw@davidwei.uk (mailing list archive)
State New
Headers show
Series test/io_uring_setup: Fix include path to syscall.h | expand

Commit Message

David Wei June 30, 2023, 2:39 a.m. UTC
From: David Wei <davidhwei@meta.com>

From "../syscall.h" to "../src/syscall.h" which is consistent with the
rest of the tests.

Signed-off-by: David Wei <davidhwei@meta.com>
---
 test/io_uring_setup.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Jens Axboe July 1, 2023, 2:13 a.m. UTC | #1
On Thu, 29 Jun 2023 19:39:37 -0700, David Wei wrote:
> >From "../syscall.h" to "../src/syscall.h" which is consistent with the
> rest of the tests.
> 
> 

Applied, thanks!

[1/1] test/io_uring_setup: Fix include path to syscall.h
      commit: b492a63713f0f0ac3ac677428de4f53a2df00909

Best regards,
diff mbox series

Patch

diff --git a/test/io_uring_setup.c b/test/io_uring_setup.c
index 2e95418..22bc401 100644
--- a/test/io_uring_setup.c
+++ b/test/io_uring_setup.c
@@ -17,7 +17,7 @@ 
 #include "liburing.h"
 #include "helpers.h"
 
-#include "../syscall.h"
+#include "../src/syscall.h"
 
 /* bogus: setup returns a valid fd on success... expect can't predict the
    fd we'll get, so this really only takes 1 parameter: error */