summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2010-07-19 15:36:51 +0200
committerSebastien Helleu <flashcode@flashtux.org>2010-07-19 15:36:51 +0200
commitb153d82b78a011776dcef4d20987d39b1f58f279 (patch)
tree5b427fe0a294fd3add0274bb3652c809ade0d4e5 /src
parenteaa54488ca053843471ebd3e38bf4b25d3493067 (diff)
downloadweechat-b153d82b78a011776dcef4d20987d39b1f58f279.zip
Remove unneeded spaces and tabs
Diffstat (limited to 'src')
-rw-r--r--src/core/wee-hashtable.h4
-rw-r--r--src/plugins/irc/irc-protocol.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/core/wee-hashtable.h b/src/core/wee-hashtable.h
index ab36cdff5..33dc7c11c 100644
--- a/src/core/wee-hashtable.h
+++ b/src/core/wee-hashtable.h
@@ -36,12 +36,12 @@ typedef void (t_hashtable_map)(void *data,
* to a linked list, and it is read with hashed key (as unsigned int).
* Keys with same hashed key are grouped in a linked list pointed by htable.
* htable is not sorted, linked list is sorted.
- *
+ *
* Example of a hashtable with size 8 and 6 items added inside, items are:
* "weechat", "fast", "light", "extensible", "chat", "client"
* Keys "fast" and "light" have same hashed value, so they are together in
* linked list.
- *
+ *
* Result is:
* +-----+
* | 0 |
diff --git a/src/plugins/irc/irc-protocol.c b/src/plugins/irc/irc-protocol.c
index ecae70f2d..e8d241054 100644
--- a/src/plugins/irc/irc-protocol.c
+++ b/src/plugins/irc/irc-protocol.c
@@ -610,7 +610,7 @@ IRC_PROTOCOL_CALLBACK(join)
pos_channel,
IRC_COLOR_MESSAGE_JOIN);
- /* display message in private if private has flag "has_quit_server" */
+ /* display message in private if private has flag "has_quit_server" */
if (!local_join)
irc_channel_display_nick_back_in_pv (server, ptr_nick, nick);
}