diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2005-05-19 02:42:27 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2005-05-19 02:42:27 +0000 |
commit | 55ce8dc1ce848c42d7f8eab4ceab058a3286ec2d (patch) | |
tree | 9bc9d6c60dcfcc6210da7898e3c5dcd55f413781 /usr.bin/ssh | |
parent | 19a0928f2676fed125a2f45159bbcca6a866d660 (diff) |
fix cast, from grunk AT pestilenz.org
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/includes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/includes.h b/usr.bin/ssh/includes.h index 456189245cc..b088cfe603a 100644 --- a/usr.bin/ssh/includes.h +++ b/usr.bin/ssh/includes.h @@ -1,4 +1,4 @@ -/* $OpenBSD: includes.h,v 1.18 2004/06/13 15:03:02 djm Exp $ */ +/* $OpenBSD: includes.h,v 1.19 2005/05/19 02:42:26 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -17,7 +17,7 @@ #define INCLUDES_H #define RCSID(msg) \ -static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg } +static /**/const char *const rcsid[] = { (const char *)rcsid, "\100(#)" msg } #include <sys/types.h> #include <sys/socket.h> |