From 481044f8b303236bc9932b91ed689bb189382494 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 23 Aug 2010 15:10:07 +0200 Subject: [PATCH] replace: Fix ifndefs for formatting defines. Thanks to Michael Brown for pointing this out. --- lib/replace/replace.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/replace/replace.h b/lib/replace/replace.h index 713634e5416..4efcb4c6ee2 100644 --- a/lib/replace/replace.h +++ b/lib/replace/replace.h @@ -81,13 +81,13 @@ #ifndef PRIi8 # define PRIi8 "i" #endif -#ifndef PRIi8 +#ifndef PRIi16 # define PRIi16 "i" #endif -#ifndef PRIi8 +#ifndef PRIi32 # define PRIi32 "i" #endif -#ifndef PRIi8 +#ifndef PRIi64 # define PRIi64 __PRI64_PREFIX "i" #endif -- 2.34.1