From bf57bef2f41d25ce2b0231e809c46f20db99e060 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 7 Jan 2013 21:52:09 -0500 Subject: [PATCH] fixed a syntax error --- bin/innodb/update_binaries_threaded.php | 2 +- bin/myisam/update_binaries_threaded.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/innodb/update_binaries_threaded.php b/bin/innodb/update_binaries_threaded.php index 836c63a6d..965d47d33 100755 --- a/bin/innodb/update_binaries_threaded.php +++ b/bin/innodb/update_binaries_threaded.php @@ -27,7 +27,7 @@ while ($ps->runParentCode()) // Spawn another thread $ps->childData = array_pop($groupList); echo "[Thread-MASTER] Spawning new thread. Still have " . count($groupList) ." group(s) to update after this\n"; - $ps->spawnchild(); + $ps->spawnChild(); } else { diff --git a/bin/myisam/update_binaries_threaded.php b/bin/myisam/update_binaries_threaded.php index ac6cafd8d..6e472fe2b 100755 --- a/bin/myisam/update_binaries_threaded.php +++ b/bin/myisam/update_binaries_threaded.php @@ -27,7 +27,7 @@ while ($ps->runParentCode()) // Spawn another thread $ps->childData = array_pop($groupList); echo "[Thread-MASTER] Spawning new thread. Still have " . count($groupList) ." group(s) to update after this\n"; - $ps->spawnchild(); + $ps->spawnChild(); } else {