diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2001-05-23 22:24:27 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2001-05-23 22:24:27 +0000 |
commit | 8fc9821df3ffdbd090f2d11c1a7585c61b358ed5 (patch) | |
tree | 9749ba84e72a6dcb7f1dd09604ea20e3ff6bc4d3 | |
parent | f0ed3e313108a833fce494b534e8eb987a9c20b5 (diff) |
version string is constant
-rw-r--r-- | usr.bin/mg/version.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mg/version.c b/usr.bin/mg/version.c index f154e47f81e..d718c253f33 100644 --- a/usr.bin/mg/version.c +++ b/usr.bin/mg/version.c @@ -1,4 +1,4 @@ -/* $OpenBSD: version.c,v 1.4 2001/01/29 01:58:10 niklas Exp $ */ +/* $OpenBSD: version.c,v 1.5 2001/05/23 22:24:26 mickey Exp $ */ /* * This file contains the string that get written @@ -7,7 +7,7 @@ #include "def.h" -char version[] = "Mg 2a"; +const char version[] = "Mg 2a"; /* * Display the version. All this does |