aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2011-09-27 09:02:48 -0700
committerPaul Eggert2011-09-27 09:02:48 -0700
commit3460fdb79911e4f5012de4262e610ddbcfcfc9e5 (patch)
treec608bdf218ee1b7308101807f30e7a3062ad19ce /src
parent17fdb2228b820dc577ff61b03876117eba5226d1 (diff)
downloademacs-3460fdb79911e4f5012de4262e610ddbcfcfc9e5.tar.gz
emacs-3460fdb79911e4f5012de4262e610ddbcfcfc9e5.zip
* print.c (print_object) [0]: Fix printf format int width.
Diffstat (limited to 'src')
-rw-r--r--src/print.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/print.c b/src/print.c
index b91e8d7cf20..8e5aab85c3c 100644
--- a/src/print.c
+++ b/src/print.c
@@ -1797,7 +1797,7 @@ print_object (Lisp_Object obj, register Lisp_Object printcharfun, int escapeflag
1797 PRINTCHAR (' '); 1797 PRINTCHAR (' ');
1798 strout (SDATA (SYMBOL_NAME (h->weak)), -1, -1, printcharfun); 1798 strout (SDATA (SYMBOL_NAME (h->weak)), -1, -1, printcharfun);
1799 PRINTCHAR (' '); 1799 PRINTCHAR (' ');
1800 sprintf (buf, "%"pI"d/%"pI"d", h->count, ASIZE (h->next)); 1800 sprintf (buf, "%"pD"d/%"pD"d", h->count, ASIZE (h->next));
1801 strout (buf, -1, -1, printcharfun); 1801 strout (buf, -1, -1, printcharfun);
1802 } 1802 }
1803 sprintf (buf, " %p", h); 1803 sprintf (buf, " %p", h);