diff options
author | kris <kris@FreeBSD.org> | 2000-11-27 06:26:48 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2000-11-27 06:26:48 +0000 |
commit | b52dd902d5b568b715f50d925605e22db51a6276 (patch) | |
tree | 94ab77da4d1222c5fc2737b459479ec44e7353a7 /bin/ed | |
parent | a5289e99bd3a0bb61d873e7b17bb94776c0fa234 (diff) | |
download | FreeBSD-src-b52dd902d5b568b715f50d925605e22db51a6276.zip FreeBSD-src-b52dd902d5b568b715f50d925605e22db51a6276.tar.gz |
Constify
Diffstat (limited to 'bin/ed')
-rw-r--r-- | bin/ed/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ed/main.c b/bin/ed/main.c index 9131ba8..2fef891 100644 --- a/bin/ed/main.c +++ b/bin/ed/main.c @@ -103,7 +103,7 @@ int lineno; /* script line number */ char *prompt; /* command-line prompt */ char *dps = "*"; /* default command-line prompt */ -char *usage = "usage: %s [-] [-sx] [-p string] [name]\n"; +const char usage[] = "usage: %s [-] [-sx] [-p string] [name]\n"; /* ed: line editor */ int |