diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-04 11:55:55 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-04 11:55:55 +0000 |
commit | 11bc0ee285a93834e03a94d9a92d236dcda338f6 (patch) | |
tree | 92460398c365aaeb70b1a3b92bf1ae9ee98b43bd /key-bindings.c | |
parent | 68a5d5c00be0e0445e72c2e960588d21c4494467 (diff) | |
download | rtmux-11bc0ee285a93834e03a94d9a92d236dcda338f6.tar.gz rtmux-11bc0ee285a93834e03a94d9a92d236dcda338f6.tar.bz2 rtmux-11bc0ee285a93834e03a94d9a92d236dcda338f6.zip |
Whoops, FREE not FREEALL.
Diffstat (limited to 'key-bindings.c')
-rw-r--r-- | key-bindings.c | 4 |
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 |