aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortwilson <twilson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-11-25 16:21:55 +0000
committertwilson <twilson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-11-25 16:21:55 +0000
commit6d678bd5e6a39e59f44511a29b8896f1edf6f99c (patch)
tree13f465bd736ea5a521c0da8b456b9cabb3d30c67
parentb89775e5d02daf390f08f6fdfc1a26c29126a560 (diff)
Merged revisions 159093 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r159093 | twilson | 2008-11-25 10:18:53 -0600 (Tue, 25 Nov 2008) | 2 lines Add missing variable declaration for PPC code ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.1@159095 f38db490-d61c-443f-a65b-d21fe96a405b
-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..ab94ec4cd 100644
--- a/apps/app_festival.c
+++ b/apps/app_festival.c
@@ -120,6 +120,7 @@ static int send_waveform_to_fd(char *waveform, int length, int fd)
int res;
#ifdef __PPC__
char c;
+ int x;
#endif
res = ast_safe_fork(0);