mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 18:48:13 -07:00
fix CID #404863 printing
This commit is contained in:
parent
dd7c9daa8d
commit
02a801f665
2 changed files with 3 additions and 5 deletions
|
@ -139,10 +139,9 @@ static void print_time(uint64_t at) {
|
|||
(void)localtime_r(&t, <);
|
||||
#endif
|
||||
|
||||
char res[32];
|
||||
strftime(res, sizeof(res), "%Y-%m-%d %H:%M:%S", <);
|
||||
|
||||
printf("%u ( '%s' )\n", (unsigned)t, res);
|
||||
char res[70];
|
||||
strftime(res, sizeof(res), "%s ('%Y-%m-%d %H:%M:%S')", <);
|
||||
printf("%s\n", res);
|
||||
}
|
||||
|
||||
static void *brute_thread(void *arguments) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue