From 06615b6e9e6904a4b7c9bf54d70bdfc958518da4 Mon Sep 17 00:00:00 2001 From: SHIRAKATA Kentaro Date: Wed, 25 Jan 2023 01:26:03 +0900 Subject: [PATCH] substitute non-ASCII chararacters in Makefile.nmake --- sys/windows/Makefile.nmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/windows/Makefile.nmake b/sys/windows/Makefile.nmake index 12e595fd9..8689f3b44 100644 --- a/sys/windows/Makefile.nmake +++ b/sys/windows/Makefile.nmake @@ -879,8 +879,8 @@ scall = # 4310 a constant value is cast to a smaller type # 4706 assignment within conditional # 4774 format string is not a string literal (default is off at W4) -# 4777 format string requires an argument of type ‘type’, -# but variadic argument ‘position’ has type ‘type’ +# 4777 format string requires an argument of type 'type', +# but variadic argument 'position' has type 'type' # 4820 padding in struct ctmpflags = $(ctmpflags:-W3=-W4) -wd4100 -wd4244 -wd4245 -wd4310 -wd4706 -w44777 -wd4820 !IF ($(VSVER) >= 2019)