From 44045af35a6ae44880655115685e0755d6a0c828 Mon Sep 17 00:00:00 2001 From: Derrick Brashear Date: Tue, 13 Dec 2011 12:19:48 -0500 Subject: [PATCH] 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 Reviewed-by: Derrick Brashear --- src/volser/vsprocs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/volser/vsprocs.c b/src/volser/vsprocs.c index 94df884..6af3bd4 100644 --- a/src/volser/vsprocs.c +++ b/src/volser/vsprocs.c @@ -3804,7 +3804,7 @@ UV_ReleaseVolume(afs_uint32 afromvol, afs_uint32 afromserver, nservers + 1); results.manyResults_val = (afs_int32 *) malloc(sizeof(afs_int32) * nservers + 1); - if (!replicas || !times || !!!results.manyResults_val || !toconns) + if (!replicas || !times || !results.manyResults_val || !toconns) ONERROR0(ENOMEM, "Failed to create transaction on the release clone\n"); -- 1.9.4