summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-07-02 15:17:59 -0400
committerJoey Hess <joey@gnu.kitenet.net>2009-07-02 15:17:59 -0400
commit6675d7c3b4b61ce03117f5878e62f31c64810dbc (patch)
tree388e5031b37b7658bcb98a32f42d86f97ea6d089
parent80476a56d197062c933c0c59bfb2d4c107344157 (diff)
downloadmoreutils-6675d7c3b4b61ce03117f5878e62f31c64810dbc.tar.gz
avoid uninitalized value warning
-rw-r--r--parallel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/parallel.c b/parallel.c
index f820cb0..67b723d 100644
--- a/parallel.c
+++ b/parallel.c
@@ -81,7 +81,7 @@ int main(int argc, char **argv) {
int maxload = -1;
int opt;
char **command = calloc(sizeof(char*), argc);
- char **arguments;
+ char **arguments = NULL;
int argidx = 0;
int cidx = 0;
int returncode = 0;