fixed warnings on Mac OS 10.8, xcode 5

This commit is contained in:
roel@libnfc.org 2013-09-25 10:40:16 +00:00
commit 7bb9d33e2c
6 changed files with 13 additions and 13 deletions

View file

@ -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;
}