summaryrefslogtreecommitdiff
path: root/lib/install.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/install.c')
-rw-r--r--lib/install.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/install.c b/lib/install.c
index fb230ea6a..e2376d9e6 100644
--- a/lib/install.c
+++ b/lib/install.c
@@ -82,7 +82,7 @@ static /*@only@*/ struct fileMemory *newFileMemory(void)
return fileMem;
}
-static void freeFileMemory(/*@only@*/struct fileMemory *fileMem)
+static void freeFileMemory( /*@only@*/ struct fileMemory *fileMem)
{
if (fileMem->files) free(fileMem->files);
if (fileMem->names) free(fileMem->names);
@@ -91,8 +91,8 @@ static void freeFileMemory(/*@only@*/struct fileMemory *fileMem)
}
/* files should not be preallocated */
-static int assembleFileList(Header h, /*@out@*/struct fileMemory ** memPtr,
- /*@out@*/int * fileCountPtr, /*@out@*/struct fileInfo ** filesPtr,
+static int assembleFileList(Header h, /*@out@*/ struct fileMemory ** memPtr,
+ /*@out@*/ int * fileCountPtr, /*@out@*/ struct fileInfo ** filesPtr,
int stripPrefixLength, enum fileActions * actions)
{
uint_32 * fileFlags;