From 1642129504072305c40b2c7eaf6995444c092a1f Mon Sep 17 00:00:00 2001 From: klayoutmatthias Date: Sun, 15 Jul 2018 16:39:16 +0200 Subject: [PATCH] Fixed a typo that breaks the Win build. --- src/tl/tl/tlLog.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tl/tl/tlLog.cc b/src/tl/tl/tlLog.cc index 9b36bce9d..f251191c8 100644 --- a/src/tl/tl/tlLog.cc +++ b/src/tl/tl/tlLog.cc @@ -42,7 +42,7 @@ static int default_verbosity () const char *verbosity_str = 0; #if defined(_WIN32) - const wchar_t *verbosity_wstr = _wgetenv (L"KLAYOUT_VERBOSITY")); + const wchar_t *verbosity_wstr = _wgetenv (L"KLAYOUT_VERBOSITY"); std::string vs; if (verbosity_wstr) { vs = tl::to_string (std::wstring (verbosity_wstr));