summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjasplin <qt-info@nokia.com>2010-04-29 08:03:07 +0200
committerjasplin <qt-info@nokia.com>2010-04-29 08:03:07 +0200
commita16fb1cf755a336fab8e8e602bee59cedeef034f (patch)
tree2d35dca6f4ee9e9c2fe30d5559fb56bab4daa49b
parentbcbf85fab1d038d2ef9a204800a8d517cef73bc5 (diff)
Prevented a compiler warning.
-rw-r--r--src/bm/bmrequest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bm/bmrequest.cpp b/src/bm/bmrequest.cpp
index 7921bb0..9a519f6 100644
--- a/src/bm/bmrequest.cpp
+++ b/src/bm/bmrequest.cpp
@@ -4731,7 +4731,7 @@ void BMRequest_GetResult::handleReply_Raw(const QStringList &args) const
QList<int> timestamps;
QStringList sha1s;
QList<qreal> values;
- qreal maxNeighborRatio;
+ qreal maxNeighborRatio = -1;
int maxNeighborRatioPos = -1;
QDomNodeList valueNodes = doc.elementsByTagName("value");