mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-14 02:26:59 -07:00
fixed warnings on Mac OS 10.8, xcode 5
This commit is contained in:
parent
450d2e3a96
commit
7bb9d33e2c
6 changed files with 13 additions and 13 deletions
|
@ -58,7 +58,7 @@ int sprintf(char *str, const char *format, ...);
|
|||
char* Iso15693sprintUID(char *target,uint8_t *uid) {
|
||||
static char tempbuf[2*8+1]="";
|
||||
if (target==NULL) target=tempbuf;
|
||||
sprintf(target,"%02hX%02hX%02hX%02hX%02hX%02hX%02hX%02hX",
|
||||
sprintf(target,"%02X%02X%02X%02X%02X%02X%02X%02X",
|
||||
uid[7],uid[6],uid[5],uid[4],uid[3],uid[2],uid[1],uid[0]);
|
||||
return target;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue