aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2009-07-22 21:46:05 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2009-07-22 21:46:05 +0000
commitfa5d1d370703818e40d17e859bf4745c3ec0a47f (patch)
tree14b9b5d5276c4ef8cd8eff2bab1b94e37d95c168 /apps
parent916e7602ec4817ec996b99ca272b88f7d21262e2 (diff)
Merged revisions 208113 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r208113 | qwell | 2009-07-22 16:43:57 -0500 (Wed, 22 Jul 2009) | 9 lines 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: http://svn.digium.com/svn/asterisk/branches/1.6.2@208116 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-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 2d57a51dc..37d765a6e 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