X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Fsession.c;h=a777b041428443fe856b4e7613920a377e7b494f;hp=5f5c2a6ee08fe202cff46a1adf461ec3c6118d5f;hb=d022620a4a3ce49862b49527c5e29d7ba6cce743;hpb=78435723057edf81c9adf14336a60c368790c0f6 diff --git a/src/bin/lttng-sessiond/session.c b/src/bin/lttng-sessiond/session.c index 5f5c2a6ee..a777b0414 100644 --- a/src/bin/lttng-sessiond/session.c +++ b/src/bin/lttng-sessiond/session.c @@ -17,6 +17,7 @@ #define _GNU_SOURCE #include +#include #include #include #include @@ -54,7 +55,7 @@ static struct ltt_session_list ltt_session_list = { * The caller MUST acquire the session list lock before. * Returns the unique identifier for the session. */ -static unsigned int add_session_list(struct ltt_session *ls) +static uint64_t add_session_list(struct ltt_session *ls) { assert(ls); @@ -219,8 +220,8 @@ int session_create(char *name, uid_t uid, gid_t gid) * up and, if valid, assign it to the session. */ - DBG("Tracing session %s created with ID %u by UID %d GID %d", name, - new_session->id, new_session->uid, new_session->gid); + DBG("Tracing session %s created with ID %" PRIu64 " by UID %d GID %d", + name, new_session->id, new_session->uid, new_session->gid); return LTTNG_OK;