From 886224ffff69ab7b9fb772bc7c8bedc7982e8f40 Mon Sep 17 00:00:00 2001 From: David Goulet Date: Thu, 21 Mar 2013 10:20:47 -0400 Subject: [PATCH] Fix: function definition and declaration mismatch Fixes #476 Signed-off-by: David Goulet --- src/common/consumer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/consumer.c b/src/common/consumer.c index 300fd2a2f..8730e39fb 100644 --- a/src/common/consumer.c +++ b/src/common/consumer.c @@ -820,7 +820,7 @@ error: * * On error, return NULL. */ -struct lttng_consumer_channel *consumer_allocate_channel(unsigned long key, +struct lttng_consumer_channel *consumer_allocate_channel(uint64_t key, uint64_t session_id, const char *pathname, const char *name, -- 2.34.1