From d6471bec319883d03b5e453b8116f32b4733b173 Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Sun, 19 Dec 2004 21:13:41 +0000 Subject: Merge Olle's comment patch (bug #3097) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4488 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- formats/format_sln.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'formats/format_sln.c') diff --git a/formats/format_sln.c b/formats/format_sln.c index 639905e01..d1826a366 100755 --- a/formats/format_sln.c +++ b/formats/format_sln.c @@ -175,7 +175,7 @@ static int slinear_seek(struct ast_filestream *fs, long sample_offset, int whenc 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