summaryrefslogtreecommitdiff
path: root/channels/chan_alsa.c
diff options
context:
space:
mode:
Diffstat (limited to 'channels/chan_alsa.c')
-rw-r--r--channels/chan_alsa.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/channels/chan_alsa.c b/channels/chan_alsa.c
index 0f61d7c03..1edd22e32 100644
--- a/channels/chan_alsa.c
+++ b/channels/chan_alsa.c
@@ -16,8 +16,8 @@
* at the top of the source tree.
*/
-/*! \file
- * \brief ALSA sound card channel driver
+/*! \file
+ * \brief ALSA sound card channel driver
*
* \author Matthew Fredrickson <creslin@digium.com>
*
@@ -129,7 +129,7 @@ static struct chan_alsa_pvt {
} alsa;
/* Number of buffers... Each is FRAMESIZE/8 ms long. For example
- with 160 sample frames, and a buffer size of 3, we have a 60ms buffer,
+ with 160 sample frames, and a buffer size of 3, we have a 60ms buffer,
usually plenty. */
#define MAX_BUFFER_SIZE 100
@@ -297,7 +297,7 @@ static int soundcard_init(void)
static int alsa_digit(struct ast_channel *c, char digit, unsigned int duration)
{
ast_mutex_lock(&alsalock);
- ast_verbose(" << Console Received digit %c of duration %u ms >> \n",
+ ast_verbose(" << Console Received digit %c of duration %u ms >> \n",
digit, duration);
ast_mutex_unlock(&alsalock);
@@ -688,7 +688,7 @@ static char *console_answer(struct ast_cli_entry *e, int cmd, struct ast_cli_arg
return NULL;
case CLI_GENERATE:
- return NULL;
+ return NULL;
}
if (a->argc != 2)
@@ -734,7 +734,7 @@ static char *console_sendtext(struct ast_cli_entry *e, int cmd, struct ast_cli_a
" Sends a text message for display on the remote terminal.\n";
return NULL;
case CLI_GENERATE:
- return NULL;
+ return NULL;
}
if (a->argc < 3)
@@ -782,9 +782,9 @@ static char *console_hangup(struct ast_cli_entry *e, int cmd, struct ast_cli_arg
" Hangs up any call currently placed on the console.\n";
return NULL;
case CLI_GENERATE:
- return NULL;
+ return NULL;
}
-
+
if (a->argc != 2)
return CLI_SHOWUSAGE;
@@ -952,8 +952,8 @@ static int unload_module(void)
* Module loading including tests for configuration or dependencies.
* This function can return AST_MODULE_LOAD_FAILURE, AST_MODULE_LOAD_DECLINE,
* or AST_MODULE_LOAD_SUCCESS. If a dependency or environment variable fails
- * tests return AST_MODULE_LOAD_FAILURE. If the module can not load the
- * configuration file or other non-critical problem return
+ * tests return AST_MODULE_LOAD_FAILURE. If the module can not load the
+ * configuration file or other non-critical problem return
* AST_MODULE_LOAD_DECLINE. On success return AST_MODULE_LOAD_SUCCESS.
*/
static int load_module(void)