From b48799d1eaf7e56e6632a857ab57c43987f32aae Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Thu, 7 Dec 2017 15:11:52 +0000 Subject: [PATCH] seq: move initializers to SDCC is happy --- Applications/util/seq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Applications/util/seq.c b/Applications/util/seq.c index 8e286c7b..6bd1f96e 100644 --- a/Applications/util/seq.c +++ b/Applications/util/seq.c @@ -48,13 +48,13 @@ static long chk_strtol(const char *s) int main(int argc, char **argv) { char **argp = argv; - appname = argv[0]; long start = 1; long step = 1; long end; const char *sep = newline; bool printed = false; + appname = argv[0]; while(*++argp && (*argp)[0] == '-' && ((*argp)[1] < '0' || (*argp)[1] > '9')) { --argc; -- 2.34.1