aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-12 13:41:42 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-12 13:41:42 +0000
commit4fd8cbe484a80bc2d68b66c3964de7a59c3b6616 (patch)
tree8ca4bf97c75fefd308cefb45d19668b2ed71d889 /include
parent73653014707ab292212a703edab2c82fadf7c2b3 (diff)
downloadruby-4fd8cbe484a80bc2d68b66c3964de7a59c3b6616.tar.gz
* include/ruby/ruby.h (PRI_PTRDIFF_PREFIX, PRI_SIZE_PREFIX): fixed typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18040 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include')
-rw-r--r--include/ruby/ruby.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/ruby/ruby.h b/include/ruby/ruby.h
index 67c22af9ad..b297231ea4 100644
--- a/include/ruby/ruby.h
+++ b/include/ruby/ruby.h
@@ -106,11 +106,11 @@ typedef unsigned LONG_LONG ID;
#define PRIXVALUE PRI_VALUE_PREFIX"X"
#if SIZEOF_PTRDIFF_T == SIZEOF_INT
-# define PRI_PTDIFF_PREFIX
+# define PRI_PTRDIFF_PREFIX
#elif SIZEOF_PTRDIFF_T == SIZEOF_LONG
-# define PRI_PTDIFF_PREFIX "l"
+# define PRI_PTRDIFF_PREFIX "l"
#elif SIZEOF_PTRDIFF_T == SIZEOF_LONG
-# define PRI_PTDIFF_PREFIX "ll"
+# define PRI_PTRDIFF_PREFIX "ll"
#endif
#define PRIdPTRDIFF PRI_PTRDIFF_PREFIX"d"
#define PRIiPTRDIFF PRI_PTRDIFF_PREFIX"i"
@@ -120,11 +120,11 @@ typedef unsigned LONG_LONG ID;
#define PRIXPTRDIFF PRI_PTRDIFF_PREFIX"X"
#if SIZEOF_SIZE_T == SIZEOF_INT
-# define PRI_PTDIFF_PREFIX
+# define PRI_SIZE_PREFIX
#elif SIZEOF_SIZE_T == SIZEOF_LONG
-# define PRI_PTDIFF_PREFIX "l"
+# define PRI_SIZE_PREFIX "l"
#elif SIZEOF_SIZE_T == SIZEOF_LONG
-# define PRI_PTDIFF_PREFIX "ll"
+# define PRI_SIZE_PREFIX "ll"
#endif
#define PRIdSIZE PRI_SIZE_PREFIX"d"
#define PRIiSIZE PRI_SIZE_PREFIX"i"