summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSunil Jogi <sunil.jogi@nxp.com>2012-05-23 13:35:57 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2012-05-23 13:35:57 -0700
commita82f60d29b927ddaaae768170ea97ded7559aa6f (patch)
tree5f5338f2a9e191b54d0df22db7f777382d443c11
parent32c1a117233e3cc330dc17fd28805e6d1f05bbb4 (diff)
parentba0407599b6271f47a4e6e6d539522ae5b207287 (diff)
downloadexternal_libnfc-nxp-a82f60d29b927ddaaae768170ea97ded7559aa6f.zip
external_libnfc-nxp-a82f60d29b927ddaaae768170ea97ded7559aa6f.tar.gz
external_libnfc-nxp-a82f60d29b927ddaaae768170ea97ded7559aa6f.tar.bz2
am ba040759: Fix wrong extern variable size
* commit 'ba0407599b6271f47a4e6e6d539522ae5b207287': Fix wrong extern variable size
-rw-r--r--src/phLibNfc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/phLibNfc.c b/src/phLibNfc.c
index c7c37c8..6477a3f 100644
--- a/src/phLibNfc.c
+++ b/src/phLibNfc.c
@@ -162,7 +162,7 @@ int phLibNfc_GetHciTimeout() {
return nxp_nfc_hci_response_timeout;
}
-extern uint32_t nxp_nfc_felica_timeout;
+extern uint8_t nxp_nfc_felica_timeout;
NFCSTATUS phLibNfc_SetFelicaTimeout(uint8_t timeout_in_ms) {
nxp_nfc_felica_timeout = timeout_in_ms;
return NFCSTATUS_SUCCESS;