Re: [PATCH] Fix type errors in win32.

2021-11-28 Thread Eli Zaretskii
> From: Paul Smith > Cc: bug-make@gnu.org > Date: Sun, 28 Nov 2021 15:19:15 -0500 > > On Mon, 2021-10-25 at 15:32 +0300, Eli Zaretskii wrote: > > the default C runtime used by Make doesn't support %llu, at least not > > on Windows versions older than Windows 10. > > Hrm, I just added a new use o

Re: [PATCH] Fix type errors in win32.

2021-11-28 Thread Paul Smith
On Mon, 2021-10-25 at 15:32 +0300, Eli Zaretskii wrote: > the default C runtime used by Make doesn't support %llu, at least not > on Windows versions older than Windows 10. Hrm, I just added a new use of sprintf() with %lld into GNU make, to format a long long variable. It worked for me in my tri

Re: [PATCH] Fix type errors in win32.

2021-10-27 Thread Eli Zaretskii
[Please use Reply All to reply, so that the mailing list is CC'ed.] > From: U2FsdGVkX1 > Date: Tue, 26 Oct 2021 09:44:01 +0800 > > >> From: U2FsdGVkX1 > >> Date: Mon, 25 Oct 2021 10:55:03 +0800 > >> Cc: U2FsdGVkX1 > >> > >> * src/commands.c (fatal_error_signal): DWORD type should be unsigned >

Re: [PATCH] Fix type errors in win32.

2021-10-25 Thread Eli Zaretskii
> From: U2FsdGVkX1 > Date: Mon, 25 Oct 2021 10:55:03 +0800 > Cc: U2FsdGVkX1 > > * src/commands.c (fatal_error_signal): DWORD type should be unsigned > * src/dir.c (print_dir_data_base): Fix format type mismatch > * src/function.c (windows32_openpipe): Use the WINAPI GetStdHandle function > inst

[PATCH] Fix type errors in win32.

2021-10-24 Thread U2FsdGVkX1
* src/commands.c (fatal_error_signal): DWORD type should be unsigned * src/dir.c (print_dir_data_base): Fix format type mismatch * src/function.c (windows32_openpipe): Use the WINAPI GetStdHandle function instead * src/getopt.c (_getopt_internal): Improve code readability --- src/commands.c | 4 +