summaryrefslogtreecommitdiff
path: root/src/expr.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1992-11-01 06:50:15 +0000
committerJim Meyering <jim@meyering.net>1992-11-01 06:50:15 +0000
commitcf5cedb71a8ee923d78d3f66e52ecddbf7a8d994 (patch)
treef17fae9aa7c21eeab8cec5cacb1464152c08bd98 /src/expr.c
parentccbd1d7dc5189f4637468a8136f672e60ee0e531 (diff)
downloadcoreutils-cf5cedb71a8ee923d78d3f66e52ecddbf7a8d994.tar.xz
Make file-scope variable static.
Diffstat (limited to 'src/expr.c')
-rw-r--r--src/expr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expr.c b/src/expr.c
index db9586922..61a6c091d 100644
--- a/src/expr.c
+++ b/src/expr.c
@@ -62,7 +62,7 @@ struct valinfo
typedef struct valinfo VALUE;
/* The arguments given to the program, minus the program name. */
-char **args;
+static char **args;
/* The name this program was run with. */
char *program_name;