summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrobertswiecki <robert@swiecki.net>2020-07-11 14:22:50 +0200
committerGitHub <noreply@github.com>2020-07-11 14:22:50 +0200
commit9f5d3238778a3dc44e09410aaf913a4e9f7356cc (patch)
treec9d2425c5e03b92543c5a1442db72138a093afa2
parenta3e9de65d9332447b2ba4f32d3c25753629a012f (diff)
parent8541db88ffed037e98e1a4ea047d955cb639ee88 (diff)
downloadhonggfuzz-9f5d3238778a3dc44e09410aaf913a4e9f7356cc.tar.gz
Merge pull request #354 from sleicasper/master
fix inconsistent declaration in header and implementation in source file
-rw-r--r--libhfcommon/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libhfcommon/util.c b/libhfcommon/util.c
index c99c798b..c5d1bf63 100644
--- a/libhfcommon/util.c
+++ b/libhfcommon/util.c
@@ -1067,7 +1067,7 @@ lhfc_addr_t util_getProgAddr(const void* addr HF_ATTR_UNUSED) {
bool util_32bitValInBinary(uint32_t v HF_ATTR_UNUSED) {
return false;
}
-bool util_64bitValInBinary(uint32_t v HF_ATTR_UNUSED) {
+bool util_64bitValInBinary(uint64_t v HF_ATTR_UNUSED) {
return false;
}
#endif /* !defined(_HF_ARCH_DARWIN) && !defined(__CYGWIN__) */