From 6e62ea5364ad23b21560904d648a305afc6354c4 Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Tue, 28 Jan 2020 05:10:38 +1100 Subject: [PATCH] [common] fix building on mingw for linux --- VERSION | 2 +- common/include/common/debug.h | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 3de36964..d7fef7af 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -B1-133-ga9e8187f28+1 \ No newline at end of file +B1-134-g5d39b6160a+1 \ No newline at end of file diff --git a/common/include/common/debug.h b/common/include/common/debug.h index 2b516ac0..bd231afc 100644 --- a/common/include/common/debug.h +++ b/common/include/common/debug.h @@ -17,6 +17,10 @@ this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#ifndef __STDC_FORMAT_MACROS +#define __STDC_FORMAT_MACROS +#endif + #include #include #include "time.h"