projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
fix warning about empty if statement in HDCClipper ctor in release build
[wxWidgets.git]
/
src
/
common
/
dbtable.cpp
diff --git
a/src/common/dbtable.cpp
b/src/common/dbtable.cpp
index 7824b7282065e3ed163c80f6e92329a5cdaf0d65..b453797e523e117ae304566a4597dea299bebc0d 100644
(file)
--- a/
src/common/dbtable.cpp
+++ b/
src/common/dbtable.cpp
@@
-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';