summaryrefslogtreecommitdiffstats
path: root/halimpl
diff options
context:
space:
mode:
Diffstat (limited to 'halimpl')
-rw-r--r--halimpl/bcm2079x/adaptation/spdhelper.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/halimpl/bcm2079x/adaptation/spdhelper.cpp b/halimpl/bcm2079x/adaptation/spdhelper.cpp
index 7acb52c..b936753 100644
--- a/halimpl/bcm2079x/adaptation/spdhelper.cpp
+++ b/halimpl/bcm2079x/adaptation/spdhelper.cpp
@@ -56,7 +56,7 @@ bool SpdHelper::isPatchBadImpl(uint8_t* prm, uint32_t len) {
string strNew;
// Get the patch ID from the prm data.
- for (int i = 0; i < 8 && i < len; ++i) strNew.append(toHex(*prm++));
+ for (uint32_t i = 0; i < 8 && i < len; ++i) strNew.append(toHex(*prm++));
// If it is not the same patch as before, then reset things.
if (strNew != mPatchId) {