From eda9e0fe3636e8af0d937ce78f782ed01ecbb80e Mon Sep 17 00:00:00 2001 From: John Darrington Date: Sat, 4 May 2019 06:55:07 +0200 Subject: [PATCH] Correct thinko in previous commit --- src/output/driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/output/driver.c b/src/output/driver.c index 44aa255824..e4227b8ca5 100644 --- a/src/output/driver.c +++ b/src/output/driver.c @@ -76,7 +76,7 @@ static struct output_engine * engine_stack_top (void) { struct ll *head = ll_head (&engine_stack); - if (ll_is_empty (head)) + if (ll_is_empty (&engine_stack)) return NULL; return ll_data (head, struct output_engine, ll); } -- 2.30.2