|
From: <cre...@us...> - 2007-06-30 22:49:43
|
Revision: 1702
http://frontierkernel.svn.sourceforge.net/frontierkernel/?rev=1702&view=rev
Author: creecode
Date: 2007-06-30 15:49:41 -0700 (Sat, 30 Jun 2007)
Log Message:
-----------
removed some unused variables ( returnH ) on two functions
Modified Paths:
--------------
Frontier/trunk/Common/source/langmysql.c
Modified: Frontier/trunk/Common/source/langmysql.c
===================================================================
--- Frontier/trunk/Common/source/langmysql.c 2007-06-30 20:13:42 UTC (rev 1701)
+++ Frontier/trunk/Common/source/langmysql.c 2007-06-30 22:49:41 UTC (rev 1702)
@@ -777,11 +777,11 @@
boolean mysqlgetserverversionverb (hdltreenode hparam1, tyvaluerecord *vreturned, bigstring bserror) {
+
MYSQL *dbid; // the MySQL object handle
unsigned long returnCode; // the return code
- Handle returnH = nil; // The handle being returned back to Frontier
- /*
+ /*
mysql.getServerVersion(dbid)
Action: get information about connection to the MySQL server
@@ -823,11 +823,11 @@
boolean mysqlgetprotocolinfoverb (hdltreenode hparam1, tyvaluerecord *vreturned, bigstring bserror) {
- MYSQL *dbid; // the MySQL object handle
+
+ MYSQL *dbid; // the MySQL object handle
unsigned int returnCode; // the return code
- Handle returnH = nil; // The handle being returned back to Frontier
- /*
+ /*
mysql.getProtocolInfo(dbid)
Action: get information about the MySQL protocol version
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|