A format string was split over two lines, with the second line
containing the format specifier that prints the channel name. A comma
was incorrectly appended to the first line, causing the format specifier
substring to become an argument string. Since no format specifiers
remain in the main string, the logger does not format any arguments.
Remove the bogus comma to fix that.
}
if (!(client->data.status & SILC_IDLIST_STATUS_REGISTERED)) {
- SILC_LOG_ERROR(("Attempting to add unregistered client to channel ",
+ SILC_LOG_ERROR(("Attempting to add unregistered client to channel "
"%s", channel->channel_name));
continue;
}