aboutsummaryrefslogtreecommitdiff
path: root/tests/storycode_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/storycode_test.c')
-rw-r--r--tests/storycode_test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/storycode_test.c b/tests/storycode_test.c
index 4ffc08c..a39fa72 100644
--- a/tests/storycode_test.c
+++ b/tests/storycode_test.c
@@ -34,7 +34,7 @@ int main(int argc, char *argv[])
{
SCBlockList *bl;
SCBlockListIterator *iter;
- char *b;
+ struct scblock *b;
bl = sc_find_blocks("\\bg{wibble \\f{wobble}}\\bg{rwawr}Wobble", "bg");
@@ -42,7 +42,7 @@ int main(int argc, char *argv[])
b != NULL;
b = sc_block_list_next(bl, iter) )
{
- printf("'%s'\n", b);
+ printf("'%s'\n", b->contents);
}
sc_block_list_free(bl);