summaryrefslogtreecommitdiff
path: root/gdk/x11/gdkevents-x11.c
diff options
context:
space:
mode:
authorMatthias Clasen <maclas@gmx.de>2004-05-28 18:21:58 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2004-05-28 18:21:58 +0000
commit588b8c7f717778d57c2d639dadea7457335a59b7 (patch)
tree2b4e50955e581e27fb28e3ec8fe79f327ed9cd65 /gdk/x11/gdkevents-x11.c
parentac8b3dc1ae956f2ea40891fa1dcc76f268548511 (diff)
downloadgdk-pixbuf-588b8c7f717778d57c2d639dadea7457335a59b7.tar.gz
Fix off-by-one allocation errors. (#143337, Billy Biggs)
Fri May 28 14:20:17 2004 Matthias Clasen <maclas@gmx.de> * gdk/x11/gdkevents-x11.c: Fix off-by-one allocation errors. (#143337, Billy Biggs)
Diffstat (limited to 'gdk/x11/gdkevents-x11.c')
-rw-r--r--gdk/x11/gdkevents-x11.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdk/x11/gdkevents-x11.c b/gdk/x11/gdkevents-x11.c
index 56a29fd8f..b4a0ba202 100644
--- a/gdk/x11/gdkevents-x11.c
+++ b/gdk/x11/gdkevents-x11.c
@@ -787,14 +787,14 @@ get_real_window (GdkDisplay *display,
}
#ifdef G_ENABLE_DEBUG
-static const char notify_modes[][18] = {
+static const char notify_modes[][19] = {
"NotifyNormal",
"NotifyGrab",
"NotifyUngrab",
"NotifyWhileGrabbed"
};
-static const char notify_details[][22] = {
+static const char notify_details[][23] = {
"NotifyAncestor",
"NotifyVirtual",
"NotifyInferior",