From 253322596d3e9cb116d4957c5500dd6143235d6e Mon Sep 17 00:00:00 2001 From: markster Date: Sat, 18 Dec 2004 22:04:07 +0000 Subject: Fix comment issues (bug #3089) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4479 f38db490-d61c-443f-a65b-d21fe96a405b --- formats/format_pcm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'formats/format_pcm.c') diff --git a/formats/format_pcm.c b/formats/format_pcm.c index 6d0127177..14edd0bb6 100755 --- a/formats/format_pcm.c +++ b/formats/format_pcm.c @@ -177,7 +177,7 @@ static int pcm_seek(struct ast_filestream *fs, long sample_offset, int whence) if (whence != SEEK_FORCECUR) { offset = (offset > max)?max:offset; } - // always protect against seeking past begining. + /* always protect against seeking past begining. */ offset = (offset < min)?min:offset; return lseek(fs->fd, offset, SEEK_SET); } -- cgit v1.2.3