From 95cf8738da612a0cfa55be97a2b86fe04dc84e93 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Sun, 10 May 2026 16:36:35 +0200 Subject: [PATCH] Avoid compiler warning (VS2022) --- src/frontend/com_let.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/com_let.c b/src/frontend/com_let.c index eae479e88..71e923f58 100644 --- a/src/frontend/com_let.c +++ b/src/frontend/com_let.c @@ -47,7 +47,7 @@ void com_let(wordlist *wl) int n_dst_index; struct pnode *names = (struct pnode *) NULL; struct dvec *vec_src = (struct dvec *) NULL; - struct plot *tplot; + struct plot *tplot = NULL; /* let with no arguments is equivalent to display */ if (!wl) {