ansilove

ANSI and ASCII art to PNG converter in C
Log | Files | Refs | README | LICENSE

commit 48872b20b4859bccf8608d67452e55a6628a4b96
parent 862de15ef9c1e8e27b2122fa0e4a58299ef38284
Author: Frederic Cambus <fred@statdns.com>
Date:   Mon,  8 Feb 2021 13:45:51 +0100

Remove dead increments for argc and argv.

Diffstat:
Msrc/ansilove.c | 3---
1 file changed, 0 insertions(+), 3 deletions(-)

diff --git a/src/ansilove.c b/src/ansilove.c @@ -173,9 +173,6 @@ main(int argc, char *argv[]) return EXIT_SUCCESS; } - argc -= optind; - argv += optind; - /* if -q flag was not set, default to stdout */ if (!messages) messages = stdout;