Change malloc to zmalloc in lttng-sessiond code
[lttng-tools.git] / lttng-sessiond / compat / compat-epoll.c
index e909b603c6bdb75fd47869548c9e1d70ec8696e3..aca80f331c74d44c0018b9c3333c2f9a623c24e7 100644 (file)
@@ -57,7 +57,7 @@ int compat_epoll_create(struct lttng_poll_event *events, int size, int flags)
        /* This *must* be freed by using lttng_poll_free() */
        events->events = zmalloc(size * sizeof(struct epoll_event));
        if (events->events == NULL) {
-               perror("malloc epoll set");
+               perror("zmalloc epoll set");
                goto error_close;
        }
 
This page took 0.022785 seconds and 4 git commands to generate.