summaryrefslogtreecommitdiff
path: root/src/commands.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands.c')
-rw-r--r--src/commands.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands.c b/src/commands.c
index 0e24f70..32746f6 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->user_id, user->name);
+ g_print("%4d: %s\n", user->id, user->name);
}
}