1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-21 13:39:09 +00:00

(svn r11480) -Codechange: Rename the function ALIGN fitting to the naming style

This fixes also FS#1450
This commit is contained in:
skidd13
2007-11-19 20:40:14 +00:00
parent d076ea8697
commit 58bb5c7525
10 changed files with 9 additions and 18 deletions

View File

@@ -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;
}