Add more missing newlines (issue #7323 reported by darkskiez)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@33266 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.4
Joshua Colp 20 years ago
parent 68c0ffbe05
commit e3fe7e1c08

@ -2312,7 +2312,7 @@ static int admin_exec(struct ast_channel *chan, void *data) {
if (user) if (user)
user->adminflags |= ADMINFLAG_KICKME; user->adminflags |= ADMINFLAG_KICKME;
else else
ast_log(LOG_NOTICE, "Specified User not found!"); ast_log(LOG_NOTICE, "Specified User not found!\n");
break; break;
case 118: /* v: Lower all users listen volume */ case 118: /* v: Lower all users listen volume */
AST_LIST_TRAVERSE(&cnf->userlist, user, list) AST_LIST_TRAVERSE(&cnf->userlist, user, list)
@ -2338,31 +2338,31 @@ static int admin_exec(struct ast_channel *chan, void *data) {
if (user) if (user)
reset_volumes(user); reset_volumes(user);
else else
ast_log(LOG_NOTICE, "Specified User not found!"); ast_log(LOG_NOTICE, "Specified User not found!\n");
break; break;
case 85: /* U: Raise user's listen volume */ case 85: /* U: Raise user's listen volume */
if (user) if (user)
tweak_listen_volume(user, VOL_UP); tweak_listen_volume(user, VOL_UP);
else else
ast_log(LOG_NOTICE, "Specified User not found!"); ast_log(LOG_NOTICE, "Specified User not found!\n");
break; break;
case 117: /* u: Lower user's listen volume */ case 117: /* u: Lower user's listen volume */
if (user) if (user)
tweak_listen_volume(user, VOL_DOWN); tweak_listen_volume(user, VOL_DOWN);
else else
ast_log(LOG_NOTICE, "Specified User not found!"); ast_log(LOG_NOTICE, "Specified User not found!\n");
break; break;
case 84: /* T: Raise user's talk volume */ case 84: /* T: Raise user's talk volume */
if (user) if (user)
tweak_talk_volume(user, VOL_UP); tweak_talk_volume(user, VOL_UP);
else else
ast_log(LOG_NOTICE, "Specified User not found!"); ast_log(LOG_NOTICE, "Specified User not found!\n");
break; break;
case 116: /* t: Lower user's talk volume */ case 116: /* t: Lower user's talk volume */
if (user) if (user)
tweak_talk_volume(user, VOL_DOWN); tweak_talk_volume(user, VOL_DOWN);
else else
ast_log(LOG_NOTICE, "Specified User not found!"); ast_log(LOG_NOTICE, "Specified User not found!\n");
break; break;
} }
} else { } else {

Loading…
Cancel
Save