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/cpio.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/cpio.c')
-rw-r--r-- | lib/cpio.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/cpio.c b/lib/cpio.c index f22cd9acf..6e83d8e85 100644 --- a/lib/cpio.c +++ b/lib/cpio.c @@ -463,7 +463,7 @@ static int expandSymlink(CFD_t * cfd, struct cpioHeader * hdr) return 0; } -static int expandFifo(/*@unused@*/CFD_t * cfd, struct cpioHeader * hdr) +static int expandFifo( /*@unused@*/ CFD_t * cfd, struct cpioHeader * hdr) { struct stat sb; @@ -480,7 +480,7 @@ static int expandFifo(/*@unused@*/CFD_t * cfd, struct cpioHeader * hdr) return 0; } -static int expandDevice(/*@unused@*/CFD_t * cfd, struct cpioHeader * hdr) +static int expandDevice( /*@unused@*/ CFD_t * cfd, struct cpioHeader * hdr) { struct stat sb; @@ -492,13 +492,13 @@ static int expandDevice(/*@unused@*/CFD_t * cfd, struct cpioHeader * hdr) return CPIOERR_UNLINK_FAILED; } - if (/*@-unrecog@*/ mknod(hdr->path, hdr->mode & (~0777), hdr->rdev) /*@=unrecog@*/) + if ( /*@-unrecog@*/ mknod(hdr->path, hdr->mode & (~0777), hdr->rdev) /*@=unrecog@*/ ) return CPIOERR_MKNOD_FAILED; return 0; } -static void freeLink(/*@only@*/struct hardLink * li) +static void freeLink( /*@only@*/ struct hardLink * li) { int i; |