From 1487c91f3f791ccba6e8e8f9709fb83e9e8e492e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E9=80=9A=E6=B4=B2?= Date: Mon, 4 Nov 2024 10:42:45 +0800 Subject: [PATCH] OS (Linux): fix build oops --- src/detection/os/os_linux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/detection/os/os_linux.c b/src/detection/os/os_linux.c index b5b9e67ca..9b00e6cf6 100644 --- a/src/detection/os/os_linux.c +++ b/src/detection/os/os_linux.c @@ -179,7 +179,7 @@ static bool detectDebianDerived(FFOSResult* result) ffStrbufSetS(&result->idLike, "debian"); return true; } - else if (ffStrbufStartsWith(&result->name, "Lilidog GNU/Linux")) + else if (ffStrbufStartsWithS(&result->name, "Lilidog GNU/Linux")) { // https://github.com/fastfetch-cli/fastfetch/issues/1373 ffStrbufSetS(&result->id, "lilidog");