Skip to content

Commit

Permalink
Fix format char
Browse files Browse the repository at this point in the history
  • Loading branch information
jspricke authored and hoehermann committed Sep 28, 2024
1 parent 068fde8 commit 21ac5b1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/c/groups.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#include <inttypes.h>
#include "presage.h"

/*
Expand Down Expand Up @@ -133,7 +134,7 @@ void presage_handle_groups(PurpleConnection *connection, const Group *groups, ui

// TODO: add group to blist
for (uint64_t i = 0; i < length; i++) {
purple_debug_warning(PLUGIN_NAME, "got group %s „%s“ with %ld members\n", groups[i].key, groups[i].title, groups[i].population);
purple_debug_warning(PLUGIN_NAME, "got group %s „%s“ with %" PRIu64 " members\n", groups[i].key, groups[i].title, groups[i].population);
if (groups[i].population == 0) {
// An empty group. This is not a group, but rather a contact.
// TODO: Declare an addtional type for more clarity. Use separate code-paths.
Expand Down

0 comments on commit 21ac5b1

Please sign in to comment.