diff options
author | peter <peter@FreeBSD.org> | 2003-10-26 05:28:01 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2003-10-26 05:28:01 +0000 |
commit | a799821e8562f95192a3ada14118289b95891c3c (patch) | |
tree | 819064bacae3ffdf29e9b40f8069e58e601e9247 /usr.bin/ypcat | |
parent | c8ef24efdad444da54bfc8135bf1ecf5c6cffc17 (diff) | |
download | FreeBSD-src-a799821e8562f95192a3ada14118289b95891c3c.zip FreeBSD-src-a799821e8562f95192a3ada14118289b95891c3c.tar.gz |
Stop gcc warnings
Diffstat (limited to 'usr.bin/ypcat')
-rw-r--r-- | usr.bin/ypcat/ypcat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/ypcat/ypcat.c b/usr.bin/ypcat/ypcat.c index 033d343..b3225f4 100644 --- a/usr.bin/ypcat/ypcat.c +++ b/usr.bin/ypcat/ypcat.c @@ -48,7 +48,7 @@ __FBSDID("$FreeBSD$"); #include <unistd.h> struct ypalias { - const char *alias, *name; + char *alias, *name; } ypaliases[] = { { "passwd", "passwd.byname" }, { "master.passwd", "master.passwd.byname" }, |