mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-19 00:00:09 +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 git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/11@413587 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -2305,7 +2305,7 @@ static char *handle_cli_confbridge_list(struct ast_cli_entry *e, int cmd, struct
|
||||
ast_cli(a->fd, "================================ ====== ====== ========\n");
|
||||
i = ao2_iterator_init(conference_bridges, 0);
|
||||
while ((bridge = ao2_iterator_next(&i))) {
|
||||
ast_cli(a->fd, "%-32s %6i %6i %s\n", bridge->name, bridge->activeusers + bridge->waitingusers, bridge->markedusers, (bridge->locked ? "locked" : "unlocked"));
|
||||
ast_cli(a->fd, "%-32s %6u %6u %s\n", bridge->name, bridge->activeusers + bridge->waitingusers, bridge->markedusers, (bridge->locked ? "locked" : "unlocked"));
|
||||
ao2_ref(bridge, -1);
|
||||
}
|
||||
ao2_iterator_destroy(&i);
|
||||
@@ -2757,8 +2757,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