[asterisk-commits] trunk r10656 - /trunk/formats/format_h264.c

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Tue Feb 21 12:20:33 MST 2006


Author: russell
Date: Tue Feb 21 13:20:30 2006
New Revision: 10656

URL: http://svn.digium.com/view/asterisk?rev=10656&view=rev
Log:
suppress some compiler warnings due to recent format changes to use off_t

Modified:
    trunk/formats/format_h264.c

Modified: trunk/formats/format_h264.c
URL: http://svn.digium.com/view/asterisk/trunk/formats/format_h264.c?rev=10656&r1=10655&r2=10656&view=diff
==============================================================================
--- trunk/formats/format_h264.c (original)
+++ trunk/formats/format_h264.c Tue Feb 21 13:20:30 2006
@@ -221,7 +221,7 @@
 	return NULL;
 }
 
-static int h264_seek(struct ast_filestream *fs, long sample_offset, int whence)
+static int h264_seek(struct ast_filestream *fs, off_t sample_offset, int whence)
 {
 	/* No way Jose */
 	return -1;
@@ -235,7 +235,7 @@
 	return 0;
 }
 
-static long h264_tell(struct ast_filestream *fs)
+static off_t h264_tell(struct ast_filestream *fs)
 {
 	/* XXX This is totally bogus XXX */
 	off_t offset;



More information about the asterisk-commits mailing list