mirror of
https://git.openafs.org/openafs.git
synced 2025-01-19 15:30:14 +00:00
viced/callback.c: Ignore dump write errors even harder
Not only do we need to check the return value of write(2), but we also need to do so in a way that does not leave an empty body in the if statement, in order to appease the clang-500.2.79 found on OS X 10.9 with Xcode 5.0.2. Change-Id: I4564f05927fe14fea3365e9e250834ee948fe387 Reviewed-on: http://gerrit.openafs.org/10697 Tested-by: BuildBot <buildbot@rampaginggeek.com> Reviewed-by: Derrick Brashear <shadow@your-file-system.com>
This commit is contained in:
parent
5c4e555f93
commit
8105129987
@ -2668,7 +2668,7 @@ cb_OldToNew(struct fs_dump_state * state, afs_uint32 old, afs_uint32 * new)
|
|||||||
}
|
}
|
||||||
#endif /* AFS_DEMAND_ATTACH_FS */
|
#endif /* AFS_DEMAND_ATTACH_FS */
|
||||||
|
|
||||||
#define DumpBytes(fd,buf,req) if (write(fd, buf, req) < 0) ; /* don't care */
|
#define DumpBytes(fd,buf,req) if (write(fd, buf, req) < 0) {} /* don't care */
|
||||||
|
|
||||||
static int
|
static int
|
||||||
DumpCallBackState_r(void)
|
DumpCallBackState_r(void)
|
||||||
|
Loading…
Reference in New Issue
Block a user