diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2009-07-02 15:17:59 -0400 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2009-07-02 15:17:59 -0400 |
commit | 6675d7c3b4b61ce03117f5878e62f31c64810dbc (patch) | |
tree | 388e5031b37b7658bcb98a32f42d86f97ea6d089 | |
parent | 80476a56d197062c933c0c59bfb2d4c107344157 (diff) | |
download | moreutils-6675d7c3b4b61ce03117f5878e62f31c64810dbc.tar.gz |
avoid uninitalized value warning
-rw-r--r-- | parallel.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |