aboutsummaryrefslogtreecommitdiffstats
path: root/formats/format_g729.c
diff options
context:
space:
mode:
Diffstat (limited to 'formats/format_g729.c')
-rwxr-xr-xformats/format_g729.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/formats/format_g729.c b/formats/format_g729.c
index 7c268996b..28acc92a9 100755
--- a/formats/format_g729.c
+++ b/formats/format_g729.c
@@ -187,7 +187,7 @@ static int g729_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;