From 6301639146474795da10952db86ea3ef4849f568 Mon Sep 17 00:00:00 2001 From: Sergi Granell Date: Thu, 4 Feb 2016 21:35:07 +0100 Subject: [PATCH] cosmetic: use tabs instead of spaces --- src/wayland-util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wayland-util.c b/src/wayland-util.c index 3f958779..748476a2 100644 --- a/src/wayland-util.c +++ b/src/wayland-util.c @@ -123,7 +123,7 @@ wl_array_add(struct wl_array *array, size_t size) if (array->alloc < alloc) { if (array->alloc > 0) data = realloc(array->data, alloc); - else + else data = malloc(alloc); if (data == NULL)