summaryrefslogtreecommitdiff
path: root/src/irc/core/channel-events.c
diff options
context:
space:
mode:
authorMichael Vetter <g.bluehut@gmail.com>2014-09-11 19:10:33 +0200
committerMichael Vetter <g.bluehut@gmail.com>2014-09-11 19:10:33 +0200
commit51239925ec2931a065aeaee664793a0edbcd2c4a (patch)
tree92792766b7500f01a67d1d144c4028e699574e88 /src/irc/core/channel-events.c
parent503cbeb330331e9ab6cf31af453f6232b10b12e2 (diff)
downloadirssi-51239925ec2931a065aeaee664793a0edbcd2c4a.zip
source cleanup: remove trailing whitespaces
Diffstat (limited to 'src/irc/core/channel-events.c')
-rw-r--r--src/irc/core/channel-events.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/irc/core/channel-events.c b/src/irc/core/channel-events.c
index 9198ed82..6fdfeef3 100644
--- a/src/irc/core/channel-events.c
+++ b/src/irc/core/channel-events.c
@@ -123,10 +123,10 @@ static void channel_change_topic(IRC_SERVER_REC *server, const char *channel,
{
CHANNEL_REC *chanrec;
char *recoded = NULL;
-
+
chanrec = channel_find(SERVER(server), channel);
if (chanrec == NULL) return;
- /* the topic may be send out encoded, so we need to
+ /* the topic may be send out encoded, so we need to
recode it back or /topic <tab> will not work properly */
recoded = recode_in(SERVER(server), topic, channel);
if (topic != NULL) {
@@ -137,7 +137,7 @@ static void channel_change_topic(IRC_SERVER_REC *server, const char *channel,
g_free_not_null(chanrec->topic_by);
chanrec->topic_by = g_strdup(setby);
-
+
chanrec->topic_time = settime;
signal_emit("channel topic changed", 1, chanrec);