diff options
author | Jim Miller <jaggies@google.com> | 2015-05-28 15:47:16 -0700 |
---|---|---|
committer | Jim Miller <jaggies@google.com> | 2015-05-28 15:47:16 -0700 |
commit | c59a6819af49a783e571c95cf3d4c0f5fd85d00d (patch) | |
tree | 35321f92ecf28bf0344d72b82a03e64365df4feb /fingerprintd/FingerprintDaemonProxy.cpp | |
parent | 4b7ddd6105c44b01b473c5ed1035b6be34ba19e2 (diff) | |
download | core-c59a6819af49a783e571c95cf3d4c0f5fd85d00d.tar.gz core-c59a6819af49a783e571c95cf3d4c0f5fd85d00d.tar.bz2 core-c59a6819af49a783e571c95cf3d4c0f5fd85d00d.zip |
Fix 64-bit build error
Fixes bug 21491366
Change-Id: Ifd45ed8a0c5188c5fa2be1a9dac45b97c339685a
Diffstat (limited to 'fingerprintd/FingerprintDaemonProxy.cpp')
-rw-r--r-- | fingerprintd/FingerprintDaemonProxy.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fingerprintd/FingerprintDaemonProxy.cpp b/fingerprintd/FingerprintDaemonProxy.cpp index 2091a2c56..4f355200b 100644 --- a/fingerprintd/FingerprintDaemonProxy.cpp +++ b/fingerprintd/FingerprintDaemonProxy.cpp @@ -123,7 +123,7 @@ int32_t FingerprintDaemonProxy::enroll(const uint8_t* token, ssize_t tokenSize, int32_t timeout) { ALOG(LOG_VERBOSE, LOG_TAG, "enroll(gid=%d, timeout=%d)\n", groupId, timeout); if (tokenSize != sizeof(hw_auth_token_t) ) { - ALOG(LOG_VERBOSE, LOG_TAG, "enroll() : invalid token size %d\n", tokenSize); + ALOG(LOG_VERBOSE, LOG_TAG, "enroll() : invalid token size %" PRId64 "\n", tokenSize); return -1; } const hw_auth_token_t* authToken = reinterpret_cast<const hw_auth_token_t*>(token); @@ -171,7 +171,7 @@ int32_t FingerprintDaemonProxy::setActiveGroup(int32_t groupId, const uint8_t* p char path_name[PATH_MAX]; memcpy(path_name, path, pathlen); path_name[pathlen] = '\0'; - ALOG(LOG_VERBOSE, LOG_TAG, "setActiveGroup(%d, %s, %d)", groupId, path_name, pathlen); + ALOG(LOG_VERBOSE, LOG_TAG, "setActiveGroup(%d, %s, %" PRId64 ")", groupId, path_name, pathlen); return mDevice->set_active_group(mDevice, groupId, path_name); return -1; } |