List:Commits« Previous MessageNext Message »
From:mysqldev Date:March 26 2007 9:02pm
Subject:Connector/ODBC 3.51 commit: r262 - trunk/dltest
View as plain text  
Modified:
   trunk/dltest/dltest.c
Log:
Corrected syntax error if WIN32

Modified: trunk/dltest/dltest.c
===================================================================
--- trunk/dltest/dltest.c	2007-03-25 02:28:16 UTC (rev 261)
+++ trunk/dltest/dltest.c	2007-03-26 21:02:37 UTC (rev 262)
@@ -119,7 +119,7 @@
 static DLTestModule dltest_dlopen(const char *path)
 {
 #ifdef WIN32
-  DLTestModule hModule = LoadLibrary((LPCSTR)path)
+  DLTestModule hModule = LoadLibrary((LPCSTR)path);
   if ( !hModule )
   {
     LPVOID pszMsg;

Thread
Connector/ODBC 3.51 commit: r262 - trunk/dltestmysqldev26 Mar