diff --git a/src/detection/os/os_haiku.c b/src/detection/os/os_haiku.c index f31fb28fb..bb83ddeb1 100644 --- a/src/detection/os/os_haiku.c +++ b/src/detection/os/os_haiku.c @@ -14,7 +14,7 @@ void ffDetectOSImpl(FFOSResult* os) if (get_system_info(&info) != B_OK) return; - ffStrbufAppendF(&os->version, "R%lld", info.kernel_version); + ffStrbufAppendF(&os->version, "R%ld", info.kernel_version); // TODO: check kernel resources? }