summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorGary Lockyer <gary@catalyst.net.nz>2020-05-01 11:41:08 +1200
committerAndreas Schneider <asn@cryptomilk.org>2020-05-08 09:31:31 +0000
commit5e44b7cdfc5eb4b9bc7ab9d43291403fcc05de87 (patch)
treee9bd38ce1d3aed90436bb954505d84861e7444e3 /source4
parentfa8332780d2b0d31e92846fa7b1a45c130fa35c4 (diff)
downloadsamba-5e44b7cdfc5eb4b9bc7ab9d43291403fcc05de87.tar.gz
Fix clang 9 constant-conversion warnings
Signed-off-by: Gary Lockyer <gary@catalyst.net.nz> Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'source4')
-rw-r--r--source4/torture/ndr/dnsp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/torture/ndr/dnsp.c b/source4/torture/ndr/dnsp.c
index 3d0cd942d11..3fc58c9429e 100644
--- a/source4/torture/ndr/dnsp.c
+++ b/source4/torture/ndr/dnsp.c
@@ -332,7 +332,7 @@ static bool dnsp_dnsProperty_deleted_by_check(struct torture_context *tctx,
torture_assert_int_equal(tctx, r->version, 1, "version");
torture_assert_int_equal(tctx, r->id, DSPROPERTY_ZONE_DELETED_FROM_HOSTNAME, "id");
torture_assert_str_equal(tctx, r->data.deleted_by_hostname, "w2k3-191.w2k3.base", "hostname");
- torture_assert_int_equal(tctx, r->name, 4092359108, "name (random)");
+ torture_assert_int_equal(tctx, r->name, 0xf3ec71c4, "name (random)");
return true;
}