diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-11-04 17:52:50 +0100 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-11-04 17:52:59 +0100 |
commit | 04892cbbef60b0468667110ebdb7448bf183cb02 (patch) | |
tree | d69728d354f075fe83e1dcc397e4f775a4f48f22 | |
parent | d7daa8bc3c4b54d3fa751eb6763ba063ea901efc (diff) |
Case tabulation
-rw-r--r-- | src/common/plugin.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/common/plugin.c b/src/common/plugin.c index 5555a1a6..a30ba575 100644 --- a/src/common/plugin.c +++ b/src/common/plugin.c @@ -1043,17 +1043,17 @@ hexchat_get_info (hexchat_plugin *ph, const char *id) /* do the session independant ones first */ switch (hash) { - case 0x325acab5: /* libdirfs */ - return HEXCHATLIBDIR; + case 0x325acab5: /* libdirfs */ + return HEXCHATLIBDIR; - case 0x14f51cd8: /* version */ - return PACKAGE_VERSION; + case 0x14f51cd8: /* version */ + return PACKAGE_VERSION; - case 0xdd9b1abd: /* xchatdir */ - case 0x9a70daba: /* hexchatdir */ - case 0xe33f6c4a: /* xchatdirfs */ - case 0xc1a52107: /* hexchatdirfs */ - return get_xdir (); + case 0xdd9b1abd: /* xchatdir */ + case 0x9a70daba: /* hexchatdir */ + case 0xe33f6c4a: /* xchatdirfs */ + case 0xc1a52107: /* hexchatdirfs */ + return get_xdir (); } sess = ph->context; |