From 1e7d0c51282d16d61f2871d6c5712f4af4fcbe20 Mon Sep 17 00:00:00 2001 From: Derek Bruening Date: Tue, 27 Jun 2023 23:33:47 -0400 Subject: [PATCH] i#5844 scatter-gather: Fix broken include path Fixes a build breakage introduced in PR #6173 with an invalid include path. Issue: #5844 --- ext/drx/scatter_gather_x86.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/drx/scatter_gather_x86.c b/ext/drx/scatter_gather_x86.c index af9e94732ca..ea52e643fba 100644 --- a/ext/drx/scatter_gather_x86.c +++ b/ext/drx/scatter_gather_x86.c @@ -50,7 +50,7 @@ #ifdef UNIX # ifdef LINUX -# include "../../../core/unix/include/syscall.h" +# include "../../core/unix/include/syscall.h" # else # include # endif