From f3c695e3dfefede14e344f8e129006ced72990f1 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Sun, 12 Dec 2010 08:50:26 -0700 Subject: [PATCH] fix intptr_t printf template for Windows --- src/racket/src/schpriv.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/racket/src/schpriv.h b/src/racket/src/schpriv.h index b86869f2fb..111e31564a 100644 --- a/src/racket/src/schpriv.h +++ b/src/racket/src/schpriv.h @@ -2027,8 +2027,8 @@ intptr_t scheme_get_print_width(void); # ifndef PRINTF_INTPTR_SIZE_PREFIX # define PRINTF_INTPTR_SIZE_PREFIX "l" # endif -# define PTIdPTR PRINTF_INTPTR_SIZE_PREFIX "d" -# define PTIxPTR PRINTF_INTPTR_SIZE_PREFIX "x" +# define PRIdPTR PRINTF_INTPTR_SIZE_PREFIX "d" +# define PRIxPTR PRINTF_INTPTR_SIZE_PREFIX "x" #endif /*========================================================================*/