summaryrefslogtreecommitdiff
path: root/formats/format_ilbc.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-12-19 21:13:41 +0000
committerMark Spencer <markster@digium.com>2004-12-19 21:13:41 +0000
commitd6471bec319883d03b5e453b8116f32b4733b173 (patch)
tree788562539a60bddcdd1880d1d76415845a03beac /formats/format_ilbc.c
parentd6a415c262650a635bd789591ec238c8877d7367 (diff)
Merge Olle's comment patch (bug #3097)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4488 65c4cc65-6c06-0410-ace0-fbb531ad65f3
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;