mirror of
https://github.com/holub/mame
synced 2025-04-23 17:00:53 +03:00
Revert "fix building with gcc 6.1.0 by making it consistent with other source files. (nw)"
This reverts commit 4423c242a6
.
This commit is contained in:
parent
4423c242a6
commit
17080e6959
@ -36,8 +36,11 @@
|
||||
//**************************************************************************
|
||||
// CONSTANTS & DEFINES
|
||||
//**************************************************************************
|
||||
#if defined(_MSC_VER)
|
||||
/* MINGW has adopted the MSVC formatting for 64-bit ints as of gcc 4.4 */
|
||||
#if defined(WIN32)
|
||||
#define I64FMT "I64"
|
||||
#elif !defined(__APPLE__) && defined(__LP64__)
|
||||
#define I64FMT "l"
|
||||
#else
|
||||
#define I64FMT "ll"
|
||||
#endif
|
||||
@ -1735,7 +1738,7 @@ static void do_create_hd(parameters_t ¶ms)
|
||||
auto size_str = params.find(OPTION_SIZE);
|
||||
if (size_str != params.end())
|
||||
{
|
||||
if (sscanf(size_str->second->c_str(), "%" I64FMT "d", &filesize) != 1)
|
||||
if (sscanf(size_str->second->c_str(), "%" I64FMT"d", &filesize) != 1)
|
||||
report_error(1, "Invalid size string");
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user