diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-07-10 08:27:03 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-07-10 08:27:03 +0000 |
commit | ff07e78eefa511c7ae363a00bf9fbc761240552e (patch) | |
tree | 828514051e0a65cdea44369db7f06206bfb48122 /src/map/clif.c | |
parent | dfd9bcd2b9a77ff69d10add1f3b82566b1c87abe (diff) | |
download | hercules-ff07e78eefa511c7ae363a00bf9fbc761240552e.tar.gz hercules-ff07e78eefa511c7ae363a00bf9fbc761240552e.tar.bz2 hercules-ff07e78eefa511c7ae363a00bf9fbc761240552e.tar.xz hercules-ff07e78eefa511c7ae363a00bf9fbc761240552e.zip |
Renamed 'struct storage' to 'struct storage_data' (to make 'storage' available as a variable name).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12932 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index fec866dc0..3033717c5 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -1868,7 +1868,7 @@ void clif_equiplist(struct map_session_data *sd) } //Unified storage function which sends all of the storage (requires two packets, one for equipable items and one for stackable ones. [Skotlex] -void clif_storagelist(struct map_session_data *sd,struct storage *stor) +void clif_storagelist(struct map_session_data *sd,struct storage_data *stor) { struct item_data *id; int i,n,ne,fd=sd->fd; @@ -3184,7 +3184,7 @@ void clif_tradecompleted(struct map_session_data* sd, int fail) /*========================================== * カプラ倉庫のアイテム数を更新 *------------------------------------------*/ -int clif_updatestorageamount(struct map_session_data *sd,struct storage *stor) +int clif_updatestorageamount(struct map_session_data *sd,struct storage_data *stor) { int fd; @@ -3204,7 +3204,7 @@ int clif_updatestorageamount(struct map_session_data *sd,struct storage *stor) /*========================================== * カプラ倉庫にアイテムを追加する *------------------------------------------*/ -int clif_storageitemadded(struct map_session_data *sd,struct storage *stor,int index,int amount) +int clif_storageitemadded(struct map_session_data *sd,struct storage_data *stor,int index,int amount) { int view,fd; |