]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Merged revisions 208113 via svnmerge from
authorJason Parker <jparker@digium.com>
Wed, 22 Jul 2009 21:45:34 +0000 (21:45 +0000)
committerJason Parker <jparker@digium.com>
Wed, 22 Jul 2009 21:45:34 +0000 (21:45 +0000)
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: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@208115 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_festival.c

index 649707be9b16b1327a84f57dd58723274ac489f6..34c282b73b1c563c0ac10b82ad9cb8ebd6e07f31 100644 (file)
@@ -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