diff --git a/configure.ac b/configure.ac index a827da0..e938431 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,6 @@ # General init + +# /!\ Don't forget to update 'windows/Makefile' too /!\ AC_INIT(libnfc, 1.3.9, info@libnfc.org) AC_CONFIG_MACRO_DIR([m4]) diff --git a/examples/nfc-list.c b/examples/nfc-list.c index 24a2e18..9b53257 100644 --- a/examples/nfc-list.c +++ b/examples/nfc-list.c @@ -149,7 +149,7 @@ int main(int argc, const char* argv[]) // List ISO14443A targets if (nfc_initiator_list_passive_targets(pnd, NM_ISO14443A_106, anti, MAX_TARGET_COUNT, &szTargetFound )) { size_t n; - printf("%zu ISO14443A passive target(s) was found%s\n", szTargetFound, (szTargetFound==0)?".\n":":"); + printf("%d ISO14443A passive target(s) was found%s\n", (int)szTargetFound, (szTargetFound==0)?".\n":":"); for(n=0; n