From e8f9274ca75f66dbb59cdae2d469b10ec2408b80 Mon Sep 17 00:00:00 2001 From: Terry Wilson Date: Tue, 25 Nov 2008 16:23:38 +0000 Subject: [PATCH] Add missing variable declaration in the PPC code git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@159096 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_festival.c | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/app_festival.c b/apps/app_festival.c index ab05824f58..8251e8cffd 100644 --- a/apps/app_festival.c +++ b/apps/app_festival.c @@ -130,6 +130,7 @@ static int send_waveform_to_fd(char *waveform, int length, int fd) { int x; #ifdef __PPC__ char c; + int x; #endif sigset_t fullset, oldset;