diff options
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; |