summaryrefslogtreecommitdiff
path: root/src/group.c
diff options
context:
space:
mode:
authorJérémie Courrèges-Anglas <jca@wxcvbn.org>2014-01-03 22:47:38 +0100
committerJérémie Courrèges-Anglas <jca@wxcvbn.org>2014-01-03 23:06:38 +0100
commitc2aa1264fc52f6df08868986ed81b2d199059f7c (patch)
tree1953bde1078a0821684e51ad467be251c8696e0e /src/group.c
parent993dde6cfa315ceaa29dfd521f9fddb27a80e66a (diff)
downloadratpoison-c2aa1264fc52f6df08868986ed81b2d199059f7c.zip
malloc -> xmalloc
Diffstat (limited to 'src/group.c')
-rw-r--r--src/group.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/group.c b/src/group.c
index 348ffcc..53e509e 100644
--- a/src/group.c
+++ b/src/group.c
@@ -377,7 +377,7 @@ group_add_window (rp_group *g, rp_window *w)
rp_window_elem *we;
/* Create our container structure for the window. */
- we = malloc (sizeof (rp_window_elem));
+ we = xmalloc (sizeof (rp_window_elem));
we->win = w;
we->number = -1;