From 891760bfacc81111c53f2cda3d250d621e6e6963 Mon Sep 17 00:00:00 2001 From: Philippe Pepiot Date: Wed, 14 Apr 2010 21:17:54 +0200 Subject: [PATCH] Missing param when merging --- src/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.c b/src/config.c index 2ce27b7..b91d40c 100644 --- a/src/config.c +++ b/src/config.c @@ -199,7 +199,7 @@ conf_bar_section(void) if ((conf.selbar.nmouse = fetch_section_count(mouse))) { conf.selbar.mouse = emalloc(conf.selbar.nmouse, sizeof(MouseBinding)); - mouse_section(conf.selbar.mouse, mouse); + mouse_section(conf.selbar.mouse, conf.selbar.nmouse, mouse); } free(mouse);