Re: [Mingw-w64-public] how to printf() 64-bit integer in 64-bit compiler in strict ISO mode with all warnings enabled?

2017-06-21 Thread sisyphus1
-Original Message- From: Liu Hao Sent: Thursday, June 22, 2017 11:46 AM To: mingw-w64-public@lists.sourceforge.net Subject: Re: [Mingw-w64-public] how to printf() 64-bit integer in 64-bit compiler in strict ISO mode with all warnings enabled? So, I need to printf() uint64_t in my

Re: [Mingw-w64-public] how to printf() 64-bit integer in 64-bit compiler in strict ISO mode with all warnings enabled?

2017-06-21 Thread Liu Hao
On 2017/6/22 6:30, Lev Serebryakov wrote: Hello Lev, Wednesday, June 21, 2017, 11:41:45 PM, you wrote: So, I need to printf() uint64_t in my project, which is built in strict ISO C11 mode and with all warnings enabled. If I try to use "%llu" I get warning that "unknown conversion type

Re: [Mingw-w64-public] how to printf() 64-bit integer in 64-bit compiler in strict ISO mode with all warnings enabled?

2017-06-21 Thread Lev Serebryakov
Hello Lev, Wednesday, June 21, 2017, 11:41:45 PM, you wrote: > So, I need to printf() uint64_t in my project, which is built in strict > ISO C11 mode and with all warnings enabled. > If I try to use "%llu" I get warning that "unknown conversion type > character 'l' in format". If I use

[Mingw-w64-public] how to printf() 64-bit integer in 64-bit compiler in strict ISO mode with all warnings enabled?

2017-06-21 Thread Lev Serebryakov
Here are problem, which was discussed in the past, but without this "all warnings enabled" part. So, I need to printf() uint64_t in my project, which is built in strict ISO C11 mode and with all warnings enabled. If I try to use "%llu" I get warning that "unknown conversion type character