summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/commands.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands.c b/src/commands.c
index 32746f6..4683068 100644
--- a/src/commands.c
+++ b/src/commands.c
@@ -16,7 +16,7 @@ list_users(struct cmumble_context *ctx)
for (l = ctx->users; l; l = l->next) {
user = l->data;
- g_print("%4d: %s\n", user->id, user->name);
+ g_print("%4d: %s\n", user->session, user->name);
}
}