mirror of
https://git.openafs.org/openafs.git
synced 2025-01-19 07:20:11 +00:00
vos: fix code to not triple-negate
!!! is !. just write it that way. Change-Id: I8e788177280c4a1d78cedaffd144a5c4ecba28f2 Reviewed-on: http://gerrit.openafs.org/6252 Tested-by: BuildBot <buildbot@rampaginggeek.com> Reviewed-by: Derrick Brashear <shadow@dementix.org>
This commit is contained in:
parent
1ca207f184
commit
44045af35a
@ -3804,7 +3804,7 @@ UV_ReleaseVolume(afs_uint32 afromvol, afs_uint32 afromserver,
|
|||||||
nservers + 1);
|
nservers + 1);
|
||||||
results.manyResults_val =
|
results.manyResults_val =
|
||||||
(afs_int32 *) malloc(sizeof(afs_int32) * nservers + 1);
|
(afs_int32 *) malloc(sizeof(afs_int32) * nservers + 1);
|
||||||
if (!replicas || !times || !!!results.manyResults_val || !toconns)
|
if (!replicas || !times || !results.manyResults_val || !toconns)
|
||||||
ONERROR0(ENOMEM,
|
ONERROR0(ENOMEM,
|
||||||
"Failed to create transaction on the release clone\n");
|
"Failed to create transaction on the release clone\n");
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user