]> git.saurik.com Git - wxWidgets.git/commitdiff
Compilation fix with last checkin....ooops
authorGeorge Tasker <gtasker@allenbrook.com>
Tue, 28 Dec 2004 21:03:13 +0000 (21:03 +0000)
committerGeorge Tasker <gtasker@allenbrook.com>
Tue, 28 Dec 2004 21:03:13 +0000 (21:03 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31177 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/db.cpp

index 2a13f86d55677d311867aa7ed2adfb64f406c1a9..18184c49b850238b0fa07a68d86f1f7103d78a71 100644 (file)
@@ -4244,7 +4244,7 @@ const wxChar WXDLLIMPEXP_ODBC *wxDbLogExtendedErrorMsg(const wxChar *userText,
         if (pDb->errorList[i])
         {
             msg.Append(pDb->errorList[i]);
-            if (wxStrcmp(pDb->errorList[i], wxEmptyString)) != 0)
+            if (wxStrcmp(pDb->errorList[i], wxEmptyString) != 0)
                 msg.Append(wxT("\n"));
             // Clear the errmsg buffer so the next error will not
             // end up showing the previous error that have occurred