Remove as much trailing whitespace as possible.

Change-Id: I873c1c6d00f447269bd841494459efccdd2c19c0
This commit is contained in:
Sean Bright
2017-12-22 09:23:22 -05:00
parent 9ef97b5a91
commit fd0ca1c3f9
700 changed files with 9249 additions and 9661 deletions

View File

@@ -21,7 +21,7 @@
* \brief SoftHangup application
*
* \author Mark Spencer <markster@digium.com>
*
*
* \ingroup applications
*/
@@ -52,9 +52,9 @@
</option>
</optionlist>
</parameter>
</syntax>
</syntax>
<description>
<para>Hangs up the requested channel. If there are no channels to
<para>Hangs up the requested channel. If there are no channels to
hangup, the application will report it.</para>
</description>
</application>
@@ -83,7 +83,7 @@ static int softhangup_exec(struct ast_channel *chan, const char *data)
AST_APP_ARG(options);
);
struct ast_channel_iterator *iter;
if (ast_strlen_zero(data)) {
ast_log(LOG_WARNING, "SoftHangup requires an argument (Technology/resource)\n");
return 0;
@@ -104,7 +104,7 @@ static int softhangup_exec(struct ast_channel *chan, const char *data)
ast_channel_lock(c);
ast_copy_string(name, ast_channel_name(c), sizeof(name));
if (ast_test_flag(&flags, OPTION_ALL)) {
/* CAPI is set up like CAPI[foo/bar]/clcnt */
/* CAPI is set up like CAPI[foo/bar]/clcnt */
if (!strcmp(ast_channel_tech(c)->type, "CAPI")) {
cut = strrchr(name, '/');
/* Basically everything else is Foo/Bar-Z */