summaryrefslogtreecommitdiff
path: root/apps/app_festival.c
diff options
context:
space:
mode:
authorJason Parker <jparker@digium.com>2009-07-22 21:43:57 +0000
committerJason Parker <jparker@digium.com>2009-07-22 21:43:57 +0000
commitd009896670e102f55e6dda011c14a83847684e1f (patch)
treecc88895abd1bf6776d1d8d6444861cb8ba7a1f31 /apps/app_festival.c
parent4ff3f0058d35f27ac94491b072fbdd5cf30bd3d8 (diff)
Restore an int declaration on PPC platforms.
This x is one crafty little bugger... It was used for 2 different things (one of which was only done on PPC) in 1.4. One of the uses were removed in trunk, and with it went the declaration. (closes issue #14038) Reported by: ffloimair git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@208113 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_festival.c')
-rw-r--r--apps/app_festival.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/app_festival.c b/apps/app_festival.c
index 6b3d5122e..0b917a725 100644
--- a/apps/app_festival.c
+++ b/apps/app_festival.c
@@ -128,6 +128,7 @@ static int send_waveform_to_fd(char *waveform, int length, int fd)
{
int res;
#ifdef __PPC__
+ int x;
char c;
#endif