summaryrefslogtreecommitdiff
path: root/src/fileio.cpp
diff options
context:
space:
mode:
authorskidd13 <skidd13@openttd.org>2007-11-19 20:40:14 +0000
committerskidd13 <skidd13@openttd.org>2007-11-19 20:40:14 +0000
commit58bb5c752568f8f9a1cb4d9533268d0ecad34e12 (patch)
tree6112141c4dddc87df3ac0db557f34623319c73e0 /src/fileio.cpp
parentd076ea8697a61a4d7783bd6e1b5c7f12ecc2ec83 (diff)
downloadopenttd-58bb5c752568f8f9a1cb4d9533268d0ecad34e12.tar.xz
(svn r11480) -Codechange: Rename the function ALIGN fitting to the naming style
This fixes also FS#1450
Diffstat (limited to 'src/fileio.cpp')
-rw-r--r--src/fileio.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio.cpp b/src/fileio.cpp
index f92a7f6ab..a2db03896 100644
--- a/src/fileio.cpp
+++ b/src/fileio.cpp
@@ -518,7 +518,7 @@ static bool TarListAddFile(const char *filename)
if (_tar_filelist.insert(TarFileList::value_type(name, entry)).second) num++;
/* Skip to the next block.. */
- skip = ALIGN(skip, 512);
+ skip = Align(skip, 512);
fseek(f, skip, SEEK_CUR);
pos += skip;
}