diff options
| author | Jim Meyering <jim@meyering.net> | 1992-11-01 06:55:29 +0000 |
|---|---|---|
| committer | Jim Meyering <jim@meyering.net> | 1992-11-01 06:55:29 +0000 |
| commit | 505e28b60627469b360fc07f57e9709955614e8a (patch) | |
| tree | 82fd0a34ea661fb4ae9d8a6cfa5042d449fb11af | |
| parent | Make file-scope variable static. (diff) | |
| download | coreutils-505e28b60627469b360fc07f57e9709955614e8a.tar.gz coreutils-505e28b60627469b360fc07f57e9709955614e8a.zip | |
Make one more file-scope variable `static.'
| -rw-r--r-- | src/pathchk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pathchk.c b/src/pathchk.c index 0753ada70..33b912bdb 100644 --- a/src/pathchk.c +++ b/src/pathchk.c @@ -95,7 +95,7 @@ void usage (); /* The name this program was run with. */ char *program_name; -struct option longopts[] = +static struct option longopts[] = { {"portability", 0, NULL, 'p'}, {NULL, 0, NULL, 0} |
