summary refs log tree commit diff stats
path: root/src/common/plugin.c
diff options
context:
space:
mode:
authorDiogo Sousa <diogogsousa@gmail.com>2013-07-10 00:42:34 +0100
committerDiogo Sousa <diogogsousa@gmail.com>2013-07-10 00:42:34 +0100
commit5e240eb259c473dd5ef25a5d11ef5ad574470f3a (patch)
treebfe0c309fc051ef79f3933e87e7a8da35c992ec4 /src/common/plugin.c
parent7101b7b864df280059750c0de4d6b9d41e907122 (diff)
Indentation fixes and code cleanup.
Diffstat (limited to 'src/common/plugin.c')
-rw-r--r--src/common/plugin.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/plugin.c b/src/common/plugin.c
index ee7c7179..8e39f653 100644
--- a/src/common/plugin.c
+++ b/src/common/plugin.c
@@ -630,11 +630,11 @@ plugin_emit_server (session *sess, char *name, char *word[], char *word_eol[])
 
 int
 plugin_emit_server_attrs (session *sess, char *name, char *word[], char *word_eol[],
-						 time_t server_time)
+						  time_t server_time)
 {
 	hexchat_event_attrs attrs;
 
-	attrs.server_time_utc=server_time;
+	attrs.server_time_utc = server_time;
 
 	return plugin_hook_run (sess, name, word, word_eol, &attrs, HOOK_SERVER_ATTRS);
 }
@@ -652,7 +652,7 @@ plugin_emit_print_attrs (session *sess, char *word[], time_t server_time)
 {
 	hexchat_event_attrs attrs;
 
-	attrs.server_time_utc=server_time;
+	attrs.server_time_utc = server_time;
 
 	return plugin_hook_run (sess, word[0], word, NULL, &attrs, HOOK_PRINT_ATTRS);
 }