From b3f2636f44eea1a8b6fbf892d2daa611cff9d4af Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Wed, 1 Apr 2020 14:30:51 +0000 Subject: Fix missing header without LZO lib/common/compress.c: In function 'compressor_get_default': lib/common/compress.c:39:2: warning: implicit declaration of function 'assert' [-Wimplicit-function-declaration] 39 | assert(0); | ^~~~~~ lib/common/compress.c:8:1: note: 'assert' is defined in header ''; did you forget to '#include '? 7 | #include "common.h" +++ |+#include 8 | --- lib/common/compress.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/common/compress.c b/lib/common/compress.c index ea7b71f..f16f080 100644 --- a/lib/common/compress.c +++ b/lib/common/compress.c @@ -5,6 +5,7 @@ * Copyright (C) 2019 David Oberhollenzer */ #include "common.h" +#include static int cmp_ids[] = { SQFS_COMP_XZ, -- cgit v1.2.3