fixed a lot of simulation issues

This commit is contained in:
roel@libnfc.org 2012-06-29 10:24:05 +00:00
parent 912a3e94e4
commit 81cd0474cb
10 changed files with 325 additions and 119 deletions

View file

@ -166,7 +166,7 @@ uint64_t param_get64ex(const char *line, int paramnum, int deflt, int base)
int bg, en;
if (!param_getptr(line, &bg, &en, paramnum))
return strtol(&line[bg], NULL, base);
return strtoll(&line[bg], NULL, base);
else
return deflt;