summaryrefslogtreecommitdiff
path: root/clients/multi-resource.c
diff options
context:
space:
mode:
Diffstat (limited to 'clients/multi-resource.c')
-rw-r--r--clients/multi-resource.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/clients/multi-resource.c b/clients/multi-resource.c
index c30d38a0..4ed4d500 100644
--- a/clients/multi-resource.c
+++ b/clients/multi-resource.c
@@ -40,6 +40,7 @@
#include <wayland-client.h>
#include "shared/os-compatibility.h"
+#include "shared/zalloc.h"
struct device {
enum { KEYBOARD, POINTER } type;
@@ -87,7 +88,7 @@ xzalloc(size_t s)
{
void *p;
- p = calloc(1, s);
+ p = zalloc(s);
if (p == NULL) {
fprintf(stderr, "%s: out of memory\n", program_invocation_short_name);
exit(EXIT_FAILURE);