From: Dmitry V. Levin Date: Fri, 22 Apr 2016 23:54:58 +0000 (+0000) Subject: Rename PRI__s64 to PRI__d64 X-Git-Tag: v4.12~297 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e5c88499a353f4d831371c5641775c21dd70fff5;p=strace Rename PRI__s64 to PRI__d64 As PRI__*64 macros mirror PRI*64 macros from inttypes.h, follow the principle of least astonishment and name these macros the same way. * defs.h (PRI__s64): Rename to PRI__d64. --- diff --git a/defs.h b/defs.h index ac59349f..0b5f9f9c 100644 --- a/defs.h +++ b/defs.h @@ -787,6 +787,6 @@ extern unsigned num_quals; # define PRI__64 "ll" #endif -#define PRI__s64 PRI__64"d" +#define PRI__d64 PRI__64"d" #define PRI__u64 PRI__64"u" #define PRI__x64 PRI__64"x"