Browse Source

Fixed variable declarations breaking ANSI C

git-svn-id: https://svn.code.sf.net/p/rathena/svn/branches/stable@1386 54d463be-8e91-2dee-dedb-b68131a5f0ec
veider 20 years ago
parent
commit
6842cdb01e
2 changed files with 4 additions and 3 deletions
  1. 1 0
      Changelog-SVN.txt
  2. 3 3
      src/login_sql/login.c

+ 1 - 0
Changelog-SVN.txt

@@ -2,6 +2,7 @@
 Date	Added
 
 04/03
+	* Fixed some variable declarations in SQL login.c causing compilation errors [veider]
 	* Added NetBSD support into Makefile (Still lots of warrnings during compilation [veider]
 	* Finished Valkyrie. Now it correctly works. Valhallana reborns players to High Novices. [Lupus]
 	  (added missed kRO condition: to reborn, player shouldn't have money nor items(equipment) )

+ 3 - 3
src/login_sql/login.c

@@ -155,9 +155,9 @@ struct dbt *online_db;
 //-----------------------------------------------------
 
 void add_online_user(int account_id) {
+    int *p;
     if(register_users_online <= 0)
 	return;
-    int *p;
     p = (int*)aMalloc(sizeof(int));
     if (p == NULL) {
 		printf("add_online_user: memory allocation failure (malloc)!\n");
@@ -168,9 +168,9 @@ void add_online_user(int account_id) {
 }
 
 int is_user_online(int account_id) {
+    int *p;
     if(register_users_online <= 0)
 	return 0;
-    int *p;
 
 	p = (int*)numdb_search(online_db, account_id);
 	if (p == NULL)
@@ -180,9 +180,9 @@ int is_user_online(int account_id) {
 }
 
 void remove_online_user(int account_id) {
+    int *p;
     if(register_users_online <= 0)
 	return;
-    int *p;
     p = (int*)numdb_erase(online_db,account_id);
     aFree(p);
 }