mirror of
https://github.com/depp/syncfiles.git
synced 2024-11-22 03:30:57 +00:00
Fix incorrect alignment macro
This commit is contained in:
parent
d5bfaa510a
commit
01a3863697
@ -184,7 +184,7 @@ static void ProjectClose(WindowRef window, ProjectHandle project)
|
||||
|
||||
#define kChunkCount 2
|
||||
|
||||
#define ALIGN(x) (((x) + 15) + ~(UInt32)15)
|
||||
#define ALIGN(x) (((x) + 15) & ~(UInt32)15)
|
||||
|
||||
static OSErr ProjectWriteHeader(short refNum, int nchunks,
|
||||
struct ProjectChunk *ckInfo)
|
||||
|
Loading…
Reference in New Issue
Block a user