From: Arran Cudbard-Bell Date: Thu, 7 Oct 2021 01:23:37 +0000 (-0500) Subject: Remove spurious new lines X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=27bd324fcecdfdf7ddd464c9213db6703bd7eb28;p=thirdparty%2Ffreeradius-server.git Remove spurious new lines --- diff --git a/src/lib/util/pair.c b/src/lib/util/pair.c index 9c9d3402d0..45ff81483a 100644 --- a/src/lib/util/pair.c +++ b/src/lib/util/pair.c @@ -2261,19 +2261,19 @@ void fr_pair_verify(char const *file, int line, fr_pair_t const *vp) if (!talloc_get_type(vp->vp_ptr, uint8_t)) { fr_fatal_assert_fail("CONSISTENCY CHECK FAILED %s[%u]: fr_pair_t \"%s\" data buffer type should be " - "uint8_t but is %s\n", file, line, vp->da->name, talloc_get_name(vp->vp_ptr)); + "uint8_t but is %s", file, line, vp->da->name, talloc_get_name(vp->vp_ptr)); } len = talloc_array_length(vp->vp_octets); if (vp->vp_length > len) { fr_fatal_assert_fail("CONSISTENCY CHECK FAILED %s[%u]: fr_pair_t \"%s\" length %zu is greater than " - "uint8_t data buffer length %zu\n", file, line, vp->da->name, vp->vp_length, len); + "uint8_t data buffer length %zu", file, line, vp->da->name, vp->vp_length, len); } parent = talloc_parent(vp->vp_ptr); if (parent != vp) { fr_fatal_assert_fail("CONSISTENCY CHECK FAILED %s[%u]: fr_pair_t \"%s\" char buffer is not " - "parented by fr_pair_t %p, instead parented by %p (%s)\n", + "parented by fr_pair_t %p, instead parented by %p (%s)", file, line, vp->da->name, vp, parent, parent ? talloc_get_name(parent) : "NULL"); }