aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
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 7a3e1bdcdf7..d07f89702cc 100644
--- a/src/print.c
+++ b/src/print.c
@@ -2004,7 +2004,7 @@ print_object (Lisp_Object obj, register Lisp_Object printcharfun, int escapeflag
2004 2004
2005 case Lisp_Misc_Save_Value: 2005 case Lisp_Misc_Save_Value:
2006 strout ("#<save_value ", -1, -1, printcharfun); 2006 strout ("#<save_value ", -1, -1, printcharfun);
2007 sprintf(buf, "ptr=%p int=%"pD, 2007 sprintf(buf, "ptr=%p int=%"pD"d",
2008 XSAVE_VALUE (obj)->pointer, 2008 XSAVE_VALUE (obj)->pointer,
2009 XSAVE_VALUE (obj)->integer); 2009 XSAVE_VALUE (obj)->integer);
2010 strout (buf, -1, -1, printcharfun); 2010 strout (buf, -1, -1, printcharfun);