From f93b7523121ef42f5133001ec7ce2347e3bbfecf Mon Sep 17 00:00:00 2001 From: Joursoir Date: Wed, 19 May 2021 08:11:29 +0000 Subject: ctimeline: change (char *) to (string *) for context information --- ui-common.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ui-common.c') diff --git a/ui-common.c b/ui-common.c index 66ad5f7..87bae9a 100644 --- a/ui-common.c +++ b/ui-common.c @@ -13,8 +13,8 @@ void print_document_start() { printf("\n"); printf("\n"); - printf("%s\n", ctx.head_title); - printf("\n", ctx.css); + printf("%s\n", ctx.head_title->s); + printf("\n", ctx.css->s); printf("\n"); printf("\n"); } @@ -27,12 +27,12 @@ void print_document_header() printf("\n"); printf( - "

%s

\n", ctx.header_title); + "

%s

\n", ctx.header_title->s); printf("\n"); printf("\n"); printf( - "%s\n", ctx.header_desc); + "%s\n", ctx.header_desc->s); printf("\n"); printf("\n"); -- cgit v1.2.3-18-g5258