summaryrefslogtreecommitdiff
path: root/res/res_format_attr_opus.c
diff options
context:
space:
mode:
Diffstat (limited to 'res/res_format_attr_opus.c')
-rw-r--r--res/res_format_attr_opus.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_format_attr_opus.c b/res/res_format_attr_opus.c
index 857b9435c..9e5fe6673 100644
--- a/res/res_format_attr_opus.c
+++ b/res/res_format_attr_opus.c
@@ -116,7 +116,7 @@ static void sdp_fmtp_get(const char *attributes, const char *name, int *attr)
/* Skip any preceeding blanks as some implementations separate attributes using spaces too */
kvp = ast_skip_blanks(kvp);
- /* If we are at at the requested attribute get its value and return */
+ /* If we are at the requested attribute get its value and return */
if (!strncmp(kvp, name, strlen(name)) && kvp[strlen(name)] == '=') {
if (sscanf(kvp, "%*[^=]=%30d", &val) == 1) {
*attr = val;