From 105f9d28ad4ec051ce7fa291a2aa1dfee3e7de3f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Erkin=20Alp=20G=C3=BCney?= Date: Sat, 14 Mar 2015 10:16:57 +0200 Subject: [PATCH] Fixed type error --- Applications/util/factor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.34.1