diff options
author | Thomas White <taw@bitwiz.org.uk> | 2016-01-05 21:04:48 +0100 |
---|---|---|
committer | Thomas White <taw@bitwiz.org.uk> | 2016-01-05 21:04:48 +0100 |
commit | 7d83e3cdfd2604364a1a240248db2a6de275a99d (patch) | |
tree | f6f1a1b214a102a524fa34bf79108995332c4609 /src/sc_parse.c | |
parent | 057ddb969f7ed42b329b87bd8a9bdebbc649427d (diff) |
next/prev slide fixes
Diffstat (limited to 'src/sc_parse.c')
-rw-r--r-- | src/sc_parse.c | 2 |
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); |