From 06eb3c107b67de3edb5f147823f0ed3927f2b095 Mon Sep 17 00:00:00 2001 From: Carter Li Date: Mon, 16 Feb 2015 12:35:47 +0800 Subject: [PATCH] Fix POSIX build --- posix.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/posix.h b/posix.h index 995784fa..6d0e4dab 100644 --- a/posix.h +++ b/posix.h @@ -44,9 +44,9 @@ #ifndef FMT_POSIX # ifdef _WIN32 // Fix warnings about deprecated symbols. -# define FMT_POSIX(call) _##call +# define FMT_POSIX(symbol) _##symbol # else -# define FMT_POSIX(call) ::call +# define FMT_POSIX(symbol) symbol # endif #endif