aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-10-28 16:19:04 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-10-28 16:19:04 +0000
commit2581bee947676816e97a21258dd53a4e6b8ecd38 (patch)
tree7b4c155be0e6de82206cd0ee678f73ba1195377f
parent32dcff5349b5ed1637702de892fe7aad030f4749 (diff)
fix compiler warnings
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6872 f38db490-d61c-443f-a65b-d21fe96a405b
-rwxr-xr-xutils/frame.c2
-rwxr-xr-xutils/frame.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/utils/frame.c b/utils/frame.c
index bd83bc57e..7fdb1637d 100755
--- a/utils/frame.c
+++ b/utils/frame.c
@@ -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 */
diff --git a/utils/frame.h b/utils/frame.h
index 6f5dd3043..a07c605ec 100755
--- a/utils/frame.h
+++ b/utils/frame.h
@@ -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 */