summaryrefslogtreecommitdiffstats
path: root/key-bindings.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2007-10-04 11:55:55 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2007-10-04 11:55:55 +0000
commit11bc0ee285a93834e03a94d9a92d236dcda338f6 (patch)
tree92460398c365aaeb70b1a3b92bf1ae9ee98b43bd /key-bindings.c
parent68a5d5c00be0e0445e72c2e960588d21c4494467 (diff)
Whoops, FREE not FREEALL.
Diffstat (limited to 'key-bindings.c')
-rw-r--r--key-bindings.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/key-bindings.c b/key-bindings.c
index d62166ae..78143782 100644
--- a/key-bindings.c
+++ b/key-bindings.c
@@ -1,4 +1,4 @@
-/* $Id: key-bindings.c,v 1.6 2007-10-04 11:23:17 nicm Exp $ */
+/* $Id: key-bindings.c,v 1.7 2007-10-04 11:55:55 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -138,7 +138,7 @@ key_bindings_free(void)
xfree(bd);
}
- ARRAY_FREEALL(&key_bindings);
+ ARRAY_FREE(&key_bindings);
}
void