From: Kevin P. Fleming Date: Fri, 28 Oct 2005 16:19:04 +0000 (+0000) Subject: fix compiler warnings X-Git-Tag: 1.2.0-beta2~52 X-Git-Url: http://git.asterisk.org/gitweb/?p=asterisk%2Fasterisk.git;a=commitdiff_plain;h=59584f57442df9efcf466dd6b292f09ed30d34c9 fix compiler warnings git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6872 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/utils/frame.c b/utils/frame.c index bd83bc5..7fdb163 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 6f5dd30..a07c605 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 */