diff options
author | 2000-03-26 16:45:00 +0000 | |
---|---|---|
committer | 2000-03-26 16:45:00 +0000 | |
commit | f3e2efddedcd14d4f5420fb6d8bdeffe9370bfe0 (patch) | |
tree | 3e27a9e1ea5b33fdfe6435a18bafe8eccaa574a1 /lib/libcurses/base/lib_mouse.c | |
parent | Remove idiotic, braindead casts T* -> void* (diff) | |
download | wireguard-openbsd-f3e2efddedcd14d4f5420fb6d8bdeffe9370bfe0.tar.xz wireguard-openbsd-f3e2efddedcd14d4f5420fb6d8bdeffe9370bfe0.zip |
Update to ncurses-5.0-20000325
Diffstat (limited to 'lib/libcurses/base/lib_mouse.c')
-rw-r--r-- | lib/libcurses/base/lib_mouse.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libcurses/base/lib_mouse.c b/lib/libcurses/base/lib_mouse.c index 2bac96dd2e6..44bf768e833 100644 --- a/lib/libcurses/base/lib_mouse.c +++ b/lib/libcurses/base/lib_mouse.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lib_mouse.c,v 1.8 2000/03/10 01:35:02 millert Exp $ */ +/* $OpenBSD: lib_mouse.c,v 1.9 2000/03/26 16:45:03 millert Exp $ */ /**************************************************************************** * Copyright (c) 1998,1999,2000 Free Software Foundation, Inc. * @@ -86,7 +86,7 @@ #endif #endif -MODULE_ID("$From: lib_mouse.c,v 1.50 2000/02/13 00:59:39 tom Exp $") +MODULE_ID("$From: lib_mouse.c,v 1.51 2000/03/18 22:11:42 tom Exp $") #define MY_TRACE TRACE_ICALLS|TRACE_IEVENT @@ -228,7 +228,7 @@ static int initialized; static void initialize_mousetype(void) { - static char *xterm_kmous = "\033[M"; + static const char *xterm_kmous = "\033[M"; /* Try gpm first, because gpm may be configured to run in xterm */ #if USE_GPM_SUPPORT |