summaryrefslogtreecommitdiff
path: root/formats/format_ilbc.c
diff options
context:
space:
mode:
Diffstat (limited to 'formats/format_ilbc.c')
-rwxr-xr-xformats/format_ilbc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/formats/format_ilbc.c b/formats/format_ilbc.c
index f92018cf2..17a16dc26 100755
--- a/formats/format_ilbc.c
+++ b/formats/format_ilbc.c
@@ -5,9 +5,9 @@
*
* Brian K. West <brian@bkw.org>
*
- * Copyright (C) 1999, Mark Spencer
+ * Copyright (C) 1999-2004, Digium, inc
*
- * Mark Spencer <markster@linux-support.net>
+ * Mark Spencer <markster@digium.com>
*
* This program is free software, distributed under the terms of
* the GNU General Public License
@@ -189,7 +189,7 @@ static int ilbc_seek(struct ast_filestream *fs, long sample_offset, int whence)
if (whence != SEEK_FORCECUR) {
offset = (offset > max)?max:offset;
}
- // protect against seeking beyond begining.
+ /* protect against seeking beyond begining. */
offset = (offset < min)?min:offset;
if (lseek(fs->fd, offset, SEEK_SET) < 0)
return -1;