diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/print.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/print.c b/src/print.c index 65218084a4c..07560518c46 100644 --- a/src/print.c +++ b/src/print.c | |||
| @@ -2017,8 +2017,8 @@ print_vectorlike (Lisp_Object obj, Lisp_Object printcharfun, bool escapeflag, | |||
| 2017 | i = sprintf (buf, " stmt=%p", XSQLITE (obj)->stmt); | 2017 | i = sprintf (buf, " stmt=%p", XSQLITE (obj)->stmt); |
| 2018 | strout (buf, i, i, printcharfun); | 2018 | strout (buf, i, i, printcharfun); |
| 2019 | } | 2019 | } |
| 2020 | i = sprintf (buf, " name=%s", XSQLITE (obj)->name); | 2020 | print_c_string (" name=", printcharfun); |
| 2021 | strout (buf, i, i, printcharfun); | 2021 | print_c_string (XSQLITE (obj)->name, printcharfun); |
| 2022 | printchar ('>', printcharfun); | 2022 | printchar ('>', printcharfun); |
| 2023 | } | 2023 | } |
| 2024 | break; | 2024 | break; |