From: Erkin Alp Güney Date: Sat, 14 Mar 2015 08:16:57 +0000 (+0200) Subject: Fixed type error X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=105f9d28ad4ec051ce7fa291a2aa1dfee3e7de3f;p=FUZIX.git Fixed type error --- diff --git a/Applications/util/factor.c b/Applications/util/factor.c index a206aeb0..fa11197c 100644 --- a/Applications/util/factor.c +++ b/Applications/util/factor.c @@ -86,7 +86,7 @@ int main(int argc,char *argv[]) if (argc > 1) { char **ss; - for (ss = argv[0]; *ss; ss++) factor(*ss); + for (ss = argv; *ss; ss++) factor(*ss); } else for (;;) { char *s = 0; size_t len = 0;