summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2013-10-31 10:46:55 +0200
committerTor Lillqvist <tml@collabora.com>2013-10-31 10:46:55 +0200
commit526e754b2ac52c9e4366cce63e2c9bbf817b2e76 (patch)
tree204e0b0b70bbac77cf6edc7296ae46ae7e41366b /connectivity
parente2451bd729d0f1d795a5b689deba65bc4e9d92c6 (diff)
WaE: while loop has empty body
Not just a warning, but clearly an accidental editing error. Change-Id: Ib708b1de774d56d6c4b144c4e10e280f8181b67b
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/commontools/AutoRetrievingBase.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/connectivity/source/commontools/AutoRetrievingBase.cxx b/connectivity/source/commontools/AutoRetrievingBase.cxx
index fd82b6267a50..189e7569b7bd 100644
--- a/connectivity/source/commontools/AutoRetrievingBase.cxx
+++ b/connectivity/source/commontools/AutoRetrievingBase.cxx
@@ -42,7 +42,7 @@ namespace connectivity
{ // we need a table name
sal_Int32 nIntoIndex = sStmt.indexOf("INTO ");
sStmt = sStmt.copy(nIntoIndex+5);
- while (sStmt.startsWith(" "));
+ while (sStmt.startsWith(" "))
{
sStmt = sStmt.copy(1);
}