From 78e7cf984c5bcd672cde13d50a4b3f7c3433569f Mon Sep 17 00:00:00 2001 From: "roel@libnfc.org" Date: Thu, 3 Oct 2013 14:52:21 +0000 Subject: [PATCH] fixed some more compiler warnings --- client/nonce2key/nonce2key.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/nonce2key/nonce2key.c b/client/nonce2key/nonce2key.c index 47206380..23a948a8 100644 --- a/client/nonce2key/nonce2key.c +++ b/client/nonce2key/nonce2key.c @@ -105,7 +105,7 @@ int nonce2key(uint32_t uid, uint32_t nt, uint32_t nr, uint64_t par_info, uint64_ p2 = state_s; while ( *p1 != -1 && *p2 != -1 ) { if (compar_state(p1, p2) == 0) { - printf("p1:%ld p2:%ld p3:%ld key:%012"llx"\n",p1-last_keylist, p2-state_s, p3-last_keylist,*p1); + printf("p1:%"llx" p2:%"llx" p3:%"llx" key:%012"llx"\n",(uint64_t)(p1-last_keylist),(uint64_t)(p2-state_s),(uint64_t)(p3-last_keylist),*p1); *p3++ = *p1++; p2++; } -- 2.39.2