mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-26 22:30:28 +00:00
clang compiler warnings: Fix a variety of "unused" warnings
This patch fixes the -Wunused-value -Wunused-variable -Wunused-const-variable
errors caught by clang. Specifically:
* apps/app_queue.c: removed unused qpm_cmd_usage[], qum_cmd_usage[],
qsmp_cmd_usage[]
* cel/cel_sqlite3_custom.c: removed unused name[] = "cel_sqlite3_custom"
* codecs/gsm/src/gsm_create.c: removed unused ident[] = "$Header$"
* funcs/func_env.c:729: Fixed ast_str_append_substr.
* main/editline/np/strlcat.c: removed unused rcsid variable
* main/editline/np/strlcpy.c: removed unused rcsid variable
* utils/conf2ael.c: removed unused cfextension_states
* utils/extconf.c: removed unused cfextension_states
Review: https://reviewboard.asterisk.org/r/4526
ASTERISK-24917
Reported by: dkdegroot
patches:
rb4526.patch submitted by dkdegroot (License 6600)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/11@433693 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -238,19 +238,6 @@ struct store_hint {
|
||||
|
||||
AST_LIST_HEAD(store_hints, store_hint);
|
||||
|
||||
static const struct cfextension_states {
|
||||
int extension_state;
|
||||
const char * const text;
|
||||
} extension_states[] = {
|
||||
{ AST_EXTENSION_NOT_INUSE, "Idle" },
|
||||
{ AST_EXTENSION_INUSE, "InUse" },
|
||||
{ AST_EXTENSION_BUSY, "Busy" },
|
||||
{ AST_EXTENSION_UNAVAILABLE, "Unavailable" },
|
||||
{ AST_EXTENSION_RINGING, "Ringing" },
|
||||
{ AST_EXTENSION_INUSE | AST_EXTENSION_RINGING, "InUse&Ringing" },
|
||||
{ AST_EXTENSION_ONHOLD, "Hold" },
|
||||
{ AST_EXTENSION_INUSE | AST_EXTENSION_ONHOLD, "InUse&Hold" }
|
||||
};
|
||||
#define STATUS_NO_CONTEXT 1
|
||||
#define STATUS_NO_EXTENSION 2
|
||||
#define STATUS_NO_PRIORITY 3
|
||||
|
||||
Reference in New Issue
Block a user