From 4ab3ada839067eaee164be95efc0df37df6bce62 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Sun, 25 Oct 2020 14:32:42 -0700 Subject: [PATCH] tex: Avoid compiler warning for unused variable. --- src/output/tex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/output/tex.c b/src/output/tex.c index 8fad562311..4191e69381 100644 --- a/src/output/tex.c +++ b/src/output/tex.c @@ -323,7 +323,7 @@ tex_submit (struct output_driver *driver, &tex->bg); if (file_name != NULL) { - const char *title = chart_item_get_title (chart_item); + //const char *title = chart_item_get_title (chart_item); // printf ("The chart title is %s\n", title); shipout (&tex->token_list, "\\includegraphics{%s}\n", file_name); -- 2.30.2