Commit 9e2890d35e96 ("build: add liburing-ffi") didn't add "SPDX-LIcense-Identifier" in src/ffi.c. Add it. Cc: Christian Mazakas <christian.mazakas@xxxxxxxxx> Signed-off-by: Ammar Faizi <ammarfaizi2@xxxxxxxxxxx> --- src/ffi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ffi.c b/src/ffi.c index fbca2a4..03e382e 100644 --- a/src/ffi.c +++ b/src/ffi.c @@ -1,10 +1,11 @@ +/* SPDX-License-Identifier: MIT */ #define IOURINGINLINE #ifdef __clang__ // clang doesn't seem to particularly like that we're including a header that // deliberately contains function definitions so we explicitly silence it #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wmissing-prototypes" #endif #include "liburing.h" -- Ammar Faizi