From 58bb5c752568f8f9a1cb4d9533268d0ecad34e12 Mon Sep 17 00:00:00 2001 From: skidd13 Date: Mon, 19 Nov 2007 20:40:14 +0000 Subject: (svn r11480) -Codechange: Rename the function ALIGN fitting to the naming style This fixes also FS#1450 --- src/fileio.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/fileio.cpp') 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; } -- cgit v1.2.3-54-g00ecf