asn1: Remove unused variable assignment in main.c

This commit is contained in:
Nicolas Williams
2022-12-30 16:38:38 -06:00
parent 9fc2e943ca
commit 26b1acf3b8

View File

@@ -415,7 +415,7 @@ main(int argc, char **argv)
buflen = strlen(buf);
if ((ws = strspn(buf, " \t")))
memmove(buf, buf + ws, buflen -= ws);
memmove(buf, buf + ws, buflen - ws);
if (buf[0] == '\0' || buf[0] == '#')
continue;