]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/dbtable.cpp
use C++ wrappers around DirectFB API for easier use
[wxWidgets.git] / src / common / dbtable.cpp
index 7824b7282065e3ed163c80f6e92329a5cdaf0d65..b453797e523e117ae304566a4597dea299bebc0d 100644 (file)
@@ -65,7 +65,7 @@ ULONG lastTableID = 0;
 
 void csstrncpyt(wxChar *target, const wxChar *source, int n)
 {
-    while ( (*target++ = *source++) != '\0' && --n )
+    while ( (*target++ = *source++) != '\0' && --n != 0 )
         ;
 
     *target = '\0';