aboutsummaryrefslogtreecommitdiffstats
path: root/src/print.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/print.c')
-rw-r--r--src/print.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/print.c b/src/print.c
index 081e5574b73..8b163e3ee39 100644
--- a/src/print.c
+++ b/src/print.c
@@ -1787,8 +1787,8 @@ print_vectorlike (Lisp_Object obj, Lisp_Object printcharfun, bool escapeflag,
1787 case PVEC_MODULE_FUNCTION: 1787 case PVEC_MODULE_FUNCTION:
1788 { 1788 {
1789 print_c_string ("#<module function ", printcharfun); 1789 print_c_string ("#<module function ", printcharfun);
1790 void *ptr = XMODULE_FUNCTION (obj)->subr; 1790 void *ptr = module_function_address (XMODULE_FUNCTION (obj));
1791 const char *file = NULL; 1791 const char *file = NULL;
1792 const char *symbol = NULL; 1792 const char *symbol = NULL;
1793 dynlib_addr (ptr, &file, &symbol); 1793 dynlib_addr (ptr, &file, &symbol);
1794 1794