aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2009-07-22 21:45:34 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2009-07-22 21:45:34 +0000
commitf8366bd31e684d8d1ec5be46ca18f84402af82e9 (patch)
treed8be8306e5b38657319dcd922a9fc218d8bf1e5b /apps
parent2e0987f4b423ddb8f6d6ffcdfe3c93ea096045a6 (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.1@208115 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 649707be9..34c282b73 100644
--- a/apps/app_festival.c
+++ b/apps/app_festival.c
@@ -119,6 +119,7 @@ static int send_waveform_to_fd(char *waveform, int length, int fd)
{
int res;
#ifdef __PPC__
+ int x;
char c;
#endif