[Asterisk-cvs] asterisk/utils frame.c,1.1,1.2 frame.h,1.1,1.2

kpfleming kpfleming
Fri Oct 28 12:26:27 CDT 2005


Update of /usr/cvsroot/asterisk/utils
In directory mongoose.digium.com:/tmp/cvs-serv571/utils

Modified Files:
	frame.c frame.h 
Log Message:
fix compiler warnings


Index: frame.c
===================================================================
RCS file: /usr/cvsroot/asterisk/utils/frame.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- frame.c	21 Jan 2005 03:56:22 -0000	1.1
+++ frame.c	28 Oct 2005 16:19:04 -0000	1.2
@@ -25,7 +25,7 @@
 #include "frame.h"
 
 time_t stopwatch;       /* will hold time at start of calculation */
-unsigned int samplefrequency;
+int samplefrequency;
 unsigned short samplewidth;
 unsigned short channels;
 int wavout;            /* TRUE iff out file should be a .WAV file */

Index: frame.h
===================================================================
RCS file: /usr/cvsroot/asterisk/utils/frame.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- frame.h	21 Jan 2005 03:56:22 -0000	1.1
+++ frame.h	28 Oct 2005 16:19:04 -0000	1.2
@@ -37,7 +37,7 @@
  #define TRUE (0==0)
 #endif
 
-extern unsigned int samplefrequency;
+extern int samplefrequency;
 extern unsigned short samplewidth;
 extern unsigned short channels;
 extern int wavout;         /* TRUE iff out file is .WAV file */




More information about the svn-commits mailing list