summaryrefslogtreecommitdiff
path: root/src/common/mmo.h
diff options
context:
space:
mode:
authoramber <amber@54d463be-8e91-2dee-dedb-b68131a5f0ec>2005-03-29 05:05:50 +0000
committeramber <amber@54d463be-8e91-2dee-dedb-b68131a5f0ec>2005-03-29 05:05:50 +0000
commit7bfe35400c79bf97a5b0bed9f170912c37cf9452 (patch)
tree5651eae9e5b8e67d4f5476445d5faccb99c72248 /src/common/mmo.h
parent1038bc42b33b73eca592b22f2868844b6e64e842 (diff)
downloadhercules-7bfe35400c79bf97a5b0bed9f170912c37cf9452.tar.gz
hercules-7bfe35400c79bf97a5b0bed9f170912c37cf9452.tar.bz2
hercules-7bfe35400c79bf97a5b0bed9f170912c37cf9452.tar.xz
hercules-7bfe35400c79bf97a5b0bed9f170912c37cf9452.zip
Fixed use of storage variable to conform to ANSI C spec [MouseJstr]
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@1327 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common/mmo.h')
-rw-r--r--src/common/mmo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/mmo.h b/src/common/mmo.h
index b61af6658..1602c5655 100644
--- a/src/common/mmo.h
+++ b/src/common/mmo.h
@@ -173,14 +173,14 @@ struct storage {
int account_id;
short storage_status;
short storage_amount;
- struct item storage[MAX_STORAGE];
+ struct item storage_[MAX_STORAGE];
};
struct guild_storage {
int guild_id;
short storage_status;
short storage_amount;
- struct item storage[MAX_GUILD_STORAGE];
+ struct item storage_[MAX_GUILD_STORAGE];
};
struct map_session_data;