3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-28 03:15:50 +00:00

Resolve comments from @daveshah1

This commit is contained in:
Eddie Hung 2019-06-14 12:00:02 -07:00
parent 2e34859a6b
commit 97d2656375
3 changed files with 11 additions and 17 deletions

View file

@ -26,7 +26,7 @@
#include <libgen.h>
#include <stdlib.h>
#endif
#include <array>
#include <inttypes.h>
#include "kernel/yosys.h"
#include "kernel/sigtools.h"
@ -277,7 +277,7 @@ static uint32_t parse_xaiger_literal(std::istream &f)
uint32_t l;
f.read(reinterpret_cast<char*>(&l), sizeof(l));
if (f.gcount() != sizeof(l))
log_error("Offset %ld: unable to read literal!\n", static_cast<int64_t>(f.tellg()));
log_error("Offset %" PRId64 ": unable to read literal!\n", static_cast<int64_t>(f.tellg()));
// TODO: Don't assume we're on little endian
#ifdef _WIN32
return _byteswap_ulong(l);