From 59584f57442df9efcf466dd6b292f09ed30d34c9 Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Fri, 28 Oct 2005 16:19:04 +0000 Subject: [PATCH] fix compiler warnings git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6872 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- utils/frame.c | 2 +- utils/frame.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 */ -- 1.7.9.5