FIX: this should remove some warnings while compiling on linux and when running Travis-CI in a docker container.

some format specifier for uint64_t
and getting the git history in the perl script.
This commit is contained in:
iceman1001 2016-01-15 12:43:29 +01:00
commit 43d3f76921
4 changed files with 14 additions and 11 deletions

View file

@ -58,7 +58,8 @@ int CmdEM410xRead(const char *Cmd)
return 0;
}
char id[12] = {0x00};
sprintf(id, "%010llx",lo);
//sprintf(id, "%010llx",lo);
sprintf(id, "%010" PRIu64 ", lo);
global_em410xId = id;
return 1;