From 5590406acf9e659e62ac9bdfa99a9c44b452eebe Mon Sep 17 00:00:00 2001 From: dwarning Date: Mon, 29 Oct 2018 17:07:57 +0100 Subject: [PATCH] The 'j' variable is assigned values twice successively. Obviously the first assigment is waste because 'j' has the meaning of row count. --- src/frontend/postcoms.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/frontend/postcoms.c b/src/frontend/postcoms.c index 83fc5cdf3..27d50b235 100644 --- a/src/frontend/postcoms.c +++ b/src/frontend/postcoms.c @@ -273,7 +273,6 @@ com_print(wordlist *wl) out_send("\n"); out_send(buf2); (void) sprintf(buf, "%s %s", p->pl_name, p->pl_date); - j = (width - (int) strlen(buf)) / 2; out_send(buf); out_send("\n"); for (i = 0; i < width; i++)