summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorAli Akhtarzada <ali.akhtarzada@nokia.com>2011-12-05 20:58:45 +0100
committerQt by Nokia <qt-info@nokia.com>2011-12-07 21:33:23 +0100
commite84cdaceb091141d7e27fc85a35511bf452dfe55 (patch)
tree624668eee77fc8d3495d73caa97808254569dd53 /tools
parent58ab3fe4de5472167e4b0911ca2435381287f9fd (diff)
printf and default case warning fixes
Change-Id: Ic968e36f3f7af37f1b908834d5c7d48897055c22 Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Prasanth Ullattil <prasanth.ullattil@nokia.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/jsondb-client/client.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/jsondb-client/client.cpp b/tools/jsondb-client/client.cpp
index f2dc110..795b86a 100644
--- a/tools/jsondb-client/client.cpp
+++ b/tools/jsondb-client/client.cpp
@@ -285,6 +285,8 @@ void Client::statusChanged()
case JsonDbClient::Error:
qCritical() << "Cannot connect to the server";
break;
+ default:
+ return;
}
}