aboutsummaryrefslogtreecommitdiff
path: root/src/sc_parse.c
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2016-01-05 21:04:48 +0100
committerThomas White <taw@bitwiz.org.uk>2016-01-05 21:04:48 +0100
commit7d83e3cdfd2604364a1a240248db2a6de275a99d (patch)
treef6f1a1b214a102a524fa34bf79108995332c4609 /src/sc_parse.c
parent057ddb969f7ed42b329b87bd8a9bdebbc649427d (diff)
next/prev slide fixes
Diffstat (limited to 'src/sc_parse.c')
-rw-r--r--src/sc_parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sc_parse.c b/src/sc_parse.c
index f3c3b4e..ef9f3da 100644
--- a/src/sc_parse.c
+++ b/src/sc_parse.c
@@ -302,7 +302,7 @@ static void recursive_show_sc_blocks(const char *prefix, const SCBlock *bl)
void show_sc_block(const SCBlock *bl, const char *prefix)
{
- printf("%s", prefix);
+ printf("%s (%p) ", prefix, bl);
if ( bl->name != NULL ) printf("\\%s ", bl->name);
if ( bl->options != NULL ) printf("[%s] ", bl->options);
if ( bl->contents != NULL ) printf("{%s} ", bl->contents);