minor formatting

This commit is contained in:
berkeviktor@aol.com 2010-09-06 18:50:43 +02:00
parent 4b9b2db912
commit bf19ba1399
1 changed files with 5 additions and 5 deletions

View File

@ -35,7 +35,7 @@ char*
check_version () check_version ()
{ {
HINTERNET hINet, hFile; HINTERNET hINet, hFile;
hINet = InternetOpen("XChat-WDK Update Checker", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0 ); hINet = InternetOpen ("XChat-WDK Update Checker", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);
if (!hINet) if (!hINet)
{ {
@ -48,7 +48,7 @@ check_version ()
{ {
static char buffer[1024]; static char buffer[1024];
DWORD dwRead; DWORD dwRead;
while (InternetReadFile(hFile, buffer, 1023, &dwRead)) while (InternetReadFile (hFile, buffer, 1023, &dwRead))
{ {
if (dwRead == 0) if (dwRead == 0)
{ {
@ -95,8 +95,8 @@ xchat_plugin_init (xchat_plugin *plugin_handle, char **plugin_name, char **plugi
*plugin_desc = "Plugin for checking for XChat-WDK updates"; *plugin_desc = "Plugin for checking for XChat-WDK updates";
*plugin_version = "1.0"; *plugin_version = "1.0";
xchat_hook_command(ph, "UPD", XCHAT_PRI_NORM, print_version, 0, 0); xchat_hook_command (ph, "UPD", XCHAT_PRI_NORM, print_version, 0, 0);
xchat_print(ph, "XChat-WDK Updater plugin loaded\n"); xchat_print (ph, "XChat-WDK Updater plugin loaded\n");
print_version (); print_version ();
return 1; /* return 1 for success */ return 1; /* return 1 for success */
@ -105,6 +105,6 @@ xchat_plugin_init (xchat_plugin *plugin_handle, char **plugin_name, char **plugi
int int
xchat_plugin_deinit (void) xchat_plugin_deinit (void)
{ {
xchat_print(ph, "XChat-WDK Updater plugin unloaded\n"); xchat_print (ph, "XChat-WDK Updater plugin unloaded\n");
return 1; return 1;
} }