ChangeSet ID: 11667 CVSROOT: /opt/cvs-commit Module name: tools Changes by: jnewman@wine.codeweavers.com 2004/03/24 17:34:33 Modified files: . : winapi_stats.php Log message: spelling Patch: http://cvs.winehq.org/patch.py?id=11667 Old revision New revision Changes Path 1.2 1.3 +3 -3 tools/winapi_stats.php Index: tools/winapi_stats.php diff -u -p tools/winapi_stats.php:1.2 tools/winapi_stats.php:1.3 --- tools/winapi_stats.php:1.2 Wed May 22 13:49:53 2013 +++ tools/winapi_stats.php Wed May 22 13:49:53 2013 @@ -30,7 +30,7 @@ mysql_query('CREATE TEMPORARY TABLE `win `stubs` INT NOT NULL , `total_func` INT NOT NULL , `real_stub` INT NOT NULL , -`psedo_stubs` INT NOT NULL , +`pseudo_stubs` INT NOT NULL , `forwards` INT NOT NULL , PRIMARY KEY ( `module` ) );'); @@ -65,10 +65,10 @@ unset($lines); // perform query on data in temp table $q = mysql_query('SELECT "Total" "Library", sum(total_func) "API Count", (sum(total_func) - sum(stubs)) / sum(total_func) *100"% implemented", -sum(stubs) "Total Stubs", sum(real_stub),sum(psedo_stubs) +sum(stubs) "Total Stubs", sum(real_stub), sum(pseudo_stubs) FROM winapi UNION ALL SELECT module "Library", total_func "API Count", (total_func - stubs) / total_func *100 "% implemented", stubs "TotalStubs", -real_stub, psedo_stubs +real_stub, pseudo_stubs FROM winapi'); // table header