aboutsummaryrefslogtreecommitdiffhomepage
path: root/uzbl.c
diff options
context:
space:
mode:
authorGravatar DuClare <akarinotengoku@gmail.com>2009-05-15 20:45:35 +0300
committerGravatar DuClare <akarinotengoku@gmail.com>2009-05-15 20:45:35 +0300
commit2c8fee29fdb81dfbaa77bfd85368a479511f22d3 (patch)
treef2198a299debd6efc6d363de053f484fe99f8108 /uzbl.c
parentba6aeb5e28193dbfa74aec98be6c6ddbaf3cc5f6 (diff)
Fix the NULL element of modkeys.
Diffstat (limited to 'uzbl.c')
-rw-r--r--uzbl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/uzbl.c b/uzbl.c
index ae8def0..770df02 100644
--- a/uzbl.c
+++ b/uzbl.c
@@ -107,7 +107,7 @@ const struct {
{ "SUPER", GDK_SUPER_MASK }, // super (since 2.10)
{ "HYPER", GDK_HYPER_MASK }, // hyper (since 2.10)
{ "META", GDK_META_MASK }, // meta (since 2.10)
- { NULL, NULL }
+ { NULL, 0 }
};
/* construct a hash from the var_name_to_ptr array for quick access */