Author: wyoung
Date: Tue Dec 11 07:53:33 2007
New Revision: 1999

URL: http://svn.gna.org/viewcvs/mysqlpp?rev=1999&view=rev
Log:
More portable version of previous LPCWSTR problem in beemutex

Modified:
    trunk/lib/beemutex.cpp

Modified: trunk/lib/beemutex.cpp
URL: 
http://svn.gna.org/viewcvs/mysqlpp/trunk/lib/beemutex.cpp?rev=1999&r1=1998&r2=1999&view=diff
==============================================================================
--- trunk/lib/beemutex.cpp (original)
+++ trunk/lib/beemutex.cpp Tue Dec 11 07:53:33 2007
@@ -64,7 +64,7 @@
 {
 #if defined(MYSQLPP_PLATFORM_WINDOWS)
        *impl_ptr(pmutex_) = CreateMutex((LPSECURITY_ATTRIBUTES) 0, FALSE,
-                       (LPCWSTR) 0);
+                       (LPCTSTR) 0);
        if (!impl_val(pmutex_))
                throw MutexFailed("CreateMutex failed");
 #else


_______________________________________________
Mysqlpp-commits mailing list
[email protected]
https://mail.gna.org/listinfo/mysqlpp-commits

Reply via email to