From: roel@libnfc.org Date: Thu, 3 Oct 2013 14:52:21 +0000 (+0000) Subject: fixed some more compiler warnings X-Git-Tag: v1.0.0~60 X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/78e7cf984c5bcd672cde13d50a4b3f7c3433569f?hp=f66021cf4875fed1ae5b6767f61197d3896e224e fixed some more compiler warnings --- 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++; }