diff options
author | jbj <devnull@localhost> | 1999-10-04 20:18:48 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 1999-10-04 20:18:48 +0000 |
commit | be45257fd9ca72ea8d450afe20ea3fc8254f0798 (patch) | |
tree | 0c49d25f8a0914dbacfd80217bfde0af959e3c78 /lib/install.c | |
parent | cabcec362682a5bd68d5acc2191333cb903a2e4e (diff) | |
download | rpm-be45257fd9ca72ea8d450afe20ea3fc8254f0798.tar.gz rpm-be45257fd9ca72ea8d450afe20ea3fc8254f0798.tar.bz2 rpm-be45257fd9ca72ea8d450afe20ea3fc8254f0798.zip |
dumb cpp's want white space around lclint annotations (Tim Mooney).
aix: aix.req broken by cut-and-paste (Tim Mooney).
CVS patchset: 3367
CVS date: 1999/10/04 20:18:48
Diffstat (limited to 'lib/install.c')
-rw-r--r-- | lib/install.c | 6 |
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; |