summary refs log tree commit diff stats
path: root/plugins/upd/upd.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/upd/upd.c')
-rw-r--r--plugins/upd/upd.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/plugins/upd/upd.c b/plugins/upd/upd.c
index 0186ed3c..0c1cc1e7 100644
--- a/plugins/upd/upd.c
+++ b/plugins/upd/upd.c
@@ -31,7 +31,7 @@
 
 static xchat_plugin *ph;   /* plugin handle */
 
-char*
+static char*
 check_version ()
 {
 	HINTERNET hINet, hFile;
@@ -57,15 +57,17 @@ check_version ()
 			buffer[dwRead] = 0;
 		}
 		
-		InternetCloseHandle (hFile);
 		return buffer;
+
+		InternetCloseHandle (hFile);
 	}
 	
 	InternetCloseHandle (hINet);
+
 	return "Unknown";
 }
 
-void
+static void
 print_version ()
 {
 	char *version = check_version ();