already empty

This commit is contained in:
iceman1001 2020-05-27 20:26:52 +02:00
parent 72170720fb
commit f6f9140c79

View file

@ -111,7 +111,6 @@ void AddLogHex(const char *fn, const char *extData, const uint8_t *data, const s
void AddLogUint64(const char *fn, const char *data, const uint64_t value) {
char buf[20] = {0};
memset(buf, 0x00, sizeof(buf));
sprintf(buf, "%016" PRIx64 "", value);
AddLogLine(fn, data, buf);
}