aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteffen Pankratz <kratz00@gmx.de>2016-02-29 18:42:55 +0100
committerSteffen Pankratz <kratz00@gmx.de>2016-02-29 18:42:55 +0100
commit46c4f8be14aff1794f88f675ab372a8a07261c1a (patch)
treedbc9e62ef833b1ea57f1592a425a22019cdd11c6
parent6d7d35fa7630dde930c4647af41b3d8d76987f45 (diff)
downloadexternal_heimdall-46c4f8be14aff1794f88f675ab372a8a07261c1a.tar.gz
external_heimdall-46c4f8be14aff1794f88f675ab372a8a07261c1a.tar.bz2
external_heimdall-46c4f8be14aff1794f88f675ab372a8a07261c1a.zip
- fixed logical error, wrong variable was used in error message
-rw-r--r--heimdall/source/FlashAction.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/heimdall/source/FlashAction.cpp b/heimdall/source/FlashAction.cpp
index 590e0b5..d9203b0 100644
--- a/heimdall/source/FlashAction.cpp
+++ b/heimdall/source/FlashAction.cpp
@@ -185,7 +185,7 @@ static bool sendTotalTransferSize(BridgeManager *bridgeManager, const vector<Par
if (totalBytesResult != 0)
{
- Interface::PrintError("Unexpected session total bytes response!\nExpected: 0\nReceived:%d\n", totalBytesResponse);
+ Interface::PrintError("Unexpected session total bytes response!\nExpected: 0\nReceived:%d\n", totalBytesResult);
return (false);
}