mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
Allow Asterisk to compile under GCC 4.10
This resolves a large number of compiler warnings from GCC 4.10 which cause the build to fail under dev mode. The vast majority are signed/unsigned mismatches in printf-style format strings. ........ Merged revisions 413586 from http://svn.asterisk.org/svn/asterisk/branches/1.8 ........ Merged revisions 413587 from http://svn.asterisk.org/svn/asterisk/branches/11 ........ Merged revisions 413588 from http://svn.asterisk.org/svn/asterisk/branches/12 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@413589 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -2392,7 +2392,7 @@ static char *handle_cli_confbridge_list(struct ast_cli_entry *e, int cmd, struct
|
||||
ast_cli(a->fd, "================================ ====== ====== ========\n");
|
||||
iter = ao2_iterator_init(conference_bridges, 0);
|
||||
while ((conference = ao2_iterator_next(&iter))) {
|
||||
ast_cli(a->fd, "%-32s %6i %6i %s\n", conference->name, conference->activeusers + conference->waitingusers, conference->markedusers, (conference->locked ? "locked" : "unlocked"));
|
||||
ast_cli(a->fd, "%-32s %6u %6u %s\n", conference->name, conference->activeusers + conference->waitingusers, conference->markedusers, (conference->locked ? "locked" : "unlocked"));
|
||||
ao2_ref(conference, -1);
|
||||
}
|
||||
ao2_iterator_destroy(&iter);
|
||||
@@ -2848,8 +2848,8 @@ static int action_confbridgelistrooms(struct mansession *s, const struct message
|
||||
"Event: ConfbridgeListRooms\r\n"
|
||||
"%s"
|
||||
"Conference: %s\r\n"
|
||||
"Parties: %d\r\n"
|
||||
"Marked: %d\r\n"
|
||||
"Parties: %u\r\n"
|
||||
"Marked: %u\r\n"
|
||||
"Locked: %s\r\n"
|
||||
"\r\n",
|
||||
id_text,
|
||||
|
Reference in New Issue
Block a user