diff options
author | Donnie Barnes <djb@redhat.com> | 1999-07-22 02:39:21 +0000 |
---|---|---|
committer | Donnie Barnes <djb@redhat.com> | 1999-07-22 02:39:21 +0000 |
commit | f5009f9ba7903d85e82d97df72ada4172f621a3f (patch) | |
tree | 99833d6214c35f25855ae75e4a62727f0024bb72 /src | |
parent | 566f3cb6f39a8ff39275d5a4518f2c595ac31416 (diff) | |
download | initscripts-f5009f9ba7903d85e82d97df72ada4172f621a3f.tar initscripts-f5009f9ba7903d85e82d97df72ada4172f621a3f.tar.gz initscripts-f5009f9ba7903d85e82d97df72ada4172f621a3f.tar.bz2 initscripts-f5009f9ba7903d85e82d97df72ada4172f621a3f.tar.xz initscripts-f5009f9ba7903d85e82d97df72ada4172f621a3f.zip |
minor nit
Diffstat (limited to 'src')
-rw-r--r-- | src/usleep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/usleep.c b/src/usleep.c index f814bb7d..7d56599c 100644 --- a/src/usleep.c +++ b/src/usleep.c @@ -18,7 +18,7 @@ int main(int argc, char **argv) { poptContext optCon; int showVersion = 0; int rc; - char * countStr; + char * countStr = NULL; struct poptOption options[] = { { "version", 'v', POPT_ARG_NONE, &showVersion, 0, "Display the version of this program, and exit" }, |