diff options
author | Ariadne Conill <ariadne@dereferenced.org> | 2021-12-14 12:43:31 -0600 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2021-12-14 18:54:16 +0000 |
commit | 36fcbeed1a8de075846b461612a7aa559fca32d1 (patch) | |
tree | 9394f75c5c32237a9e973362ae02c0957833bc93 /src | |
parent | 5bd3b1e3fc407f1ec558ebf4dfc147842191f893 (diff) | |
download | apk-tools-36fcbeed1a8de075846b461612a7aa559fca32d1.tar.gz apk-tools-36fcbeed1a8de075846b461612a7aa559fca32d1.tar.bz2 apk-tools-36fcbeed1a8de075846b461612a7aa559fca32d1.tar.xz apk-tools-36fcbeed1a8de075846b461612a7aa559fca32d1.zip |
applet: suppress is_error warning on clang
clang does not ignore inline functions when checking for unused functions
ref #10794
Diffstat (limited to 'src')
-rw-r--r-- | src/applet.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/applet.c b/src/applet.c index 5585157..3b274d7 100644 --- a/src/applet.c +++ b/src/applet.c @@ -9,6 +9,7 @@ #include <zlib.h> #include "apk_applet.h" #include "apk_print.h" +#include "help.h" static LIST_HEAD(apk_applet_list); @@ -31,6 +32,7 @@ struct apk_applet *apk_applet_find(const char *name) return NULL; } +#ifndef NO_HELP static inline int is_group(struct apk_applet *applet, const char *topic) { if (!applet) return strcasecmp(topic, "apk") == 0; @@ -39,11 +41,10 @@ static inline int is_group(struct apk_applet *applet, const char *topic) if (strcasecmp(applet->optgroups[i]->desc, topic) == 0) return 1; return 0; } +#endif void apk_applet_help(struct apk_applet *applet, struct apk_out *out) { -#include "help.h" - #ifndef NO_HELP char buf[uncompressed_help_size], *ptr, *msg; unsigned long len = sizeof buf; |