From 12a84043953849729e42f498e7386a6612f9d5ee Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Wed, 7 Jan 2015 16:46:53 -0500 Subject: [PATCH] Fix: Mismatching return type in ust_app_ht_alloc() stub MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérémie Galarneau --- src/bin/lttng-sessiond/ust-app.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/bin/lttng-sessiond/ust-app.h b/src/bin/lttng-sessiond/ust-app.h index 2d3695cef..dc636777e 100644 --- a/src/bin/lttng-sessiond/ust-app.h +++ b/src/bin/lttng-sessiond/ust-app.h @@ -410,8 +410,10 @@ struct ust_app *ust_app_get_by_pid(pid_t pid) return NULL; } static inline -void ust_app_ht_alloc(void) -{} +int ust_app_ht_alloc(void) +{ + return 0; +} static inline void ust_app_global_update(struct ltt_ust_session *usess, int sock) {} -- 2.34.1