jsjohnst Sat Jan 28 06:14:08 2006 UTC
Modified files:
/pecl/flitetts flitetts.c
/pecl/flitetts/tests fliteTTS001.phpt
Log:
fixed two typos in method names
http://cvs.php.net/viewcvs.cgi/pecl/flitetts/flitetts.c?r1=1.3&r2=1.4&diff_format=u
Index: pecl/flitetts/flitetts.c
diff -u pecl/flitetts/flitetts.c:1.3 pecl/flitetts/flitetts.c:1.4
--- pecl/flitetts/flitetts.c:1.3 Sat Jan 28 06:06:48 2006
+++ pecl/flitetts/flitetts.c Sat Jan 28 06:14:07 2006
@@ -16,7 +16,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: flitetts.c,v 1.3 2006/01/28 06:06:48 jsjohnst Exp $ */
+/* $Id: flitetts.c,v 1.4 2006/01/28 06:14:07 jsjohnst Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -289,7 +289,7 @@
ZEND_ME(flitetts, __construct, NULL, ZEND_ACC_PUBLIC)
ZEND_ME(flitetts, generateWaveData, NULL, ZEND_ACC_PUBLIC)
ZEND_ME(flitetts, outputRiffWave, NULL, ZEND_ACC_PUBLIC)
- ZEND_ME(flitetts, outputRawRave, NULL, ZEND_ACC_PUBLIC)
+ ZEND_ME(flitetts, outputRawWave, NULL, ZEND_ACC_PUBLIC)
ZEND_ME(flitetts, getRiffWave, NULL, ZEND_ACC_PUBLIC)
ZEND_ME(flitetts, getRawWave, NULL, ZEND_ACC_PUBLIC)
ZEND_ME(flitetts, getRiffWaveSize, NULL, ZEND_ACC_PUBLIC)
http://cvs.php.net/viewcvs.cgi/pecl/flitetts/tests/fliteTTS001.phpt?r1=1.3&r2=1.4&diff_format=u
Index: pecl/flitetts/tests/fliteTTS001.phpt
diff -u pecl/flitetts/tests/fliteTTS001.phpt:1.3
pecl/flitetts/tests/fliteTTS001.phpt:1.4
--- pecl/flitetts/tests/fliteTTS001.phpt:1.3 Sat Jan 28 06:06:49 2006
+++ pecl/flitetts/tests/fliteTTS001.phpt Sat Jan 28 06:14:08 2006
@@ -22,5 +22,5 @@
[4] => getRiffWave
[5] => getRawWave
[6] => getRiffWaveSize
- [7] => getRawRaveSize
+ [7] => getRawWaveSize
)
|