diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-08-23 15:10:07 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-08-23 15:10:07 +0200 |
commit | 481044f8b303236bc9932b91ed689bb189382494 (patch) | |
tree | 435445338bf4eeef9bd36f8ef138cbe833b3f0c2 /lib/replace | |
parent | 85ebc495f68ae7dca4eecc48b1e2f37325185271 (diff) | |
download | samba-481044f8b303236bc9932b91ed689bb189382494.tar.gz samba-481044f8b303236bc9932b91ed689bb189382494.tar.bz2 samba-481044f8b303236bc9932b91ed689bb189382494.zip |
replace: Fix ifndefs for formatting defines.
Thanks to Michael Brown for pointing this out.
Diffstat (limited to 'lib/replace')
-rw-r--r-- | lib/replace/replace.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/replace/replace.h b/lib/replace/replace.h index 713634e541..4efcb4c6ee 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 |