From ac7d676a1c457f71f1d3ae17d74699dd95c9c985 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Ankarstr=C3=B6m?= Date: Wed, 7 Sep 2022 01:22:30 +0200 Subject: Normalize error message formatting. --- c/err.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'c/err.h') diff --git a/c/err.h b/c/err.h index 4c6e829..73a5fc9 100644 --- a/c/err.h +++ b/c/err.h @@ -17,7 +17,7 @@ enum ErrType : unsigned char struct Err { std::wstring what; - Err(ErrType t, const wchar_t* fmt = L"%s"); + Err(ErrType t, const wchar_t* fmt = L"%s."); inline Err(ErrType t, std::wstring fmt) : Err(t, fmt.c_str()) {} }; -- cgit v1.2.3