From b5efcf08f4598004606181fe005e8a22127df61c Mon Sep 17 00:00:00 2001 From: Beniamino Galvani Date: Mon, 28 Jan 2019 16:56:46 +0100 Subject: all: move nm_utils_bin2hexstr_full() to shared reuse++ --- src/nm-core-utils.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/nm-core-utils.c') diff --git a/src/nm-core-utils.c b/src/nm-core-utils.c index 6141c5f1cf..340bbcdb15 100644 --- a/src/nm-core-utils.c +++ b/src/nm-core-utils.c @@ -2391,11 +2391,11 @@ _uuid_data_init (UuidData *uuid_data, uuid_data->is_fake = is_fake; if (packed) { G_STATIC_ASSERT_EXPR (sizeof (uuid_data->str) >= (sizeof (*uuid) * 2 + 1)); - _nm_utils_bin2hexstr_full (uuid, - sizeof (*uuid), - '\0', - FALSE, - uuid_data->str); + nm_utils_bin2hexstr_full (uuid, + sizeof (*uuid), + '\0', + FALSE, + uuid_data->str); } else { G_STATIC_ASSERT_EXPR (sizeof (uuid_data->str) >= 37); _nm_utils_uuid_unparse (uuid, uuid_data->str); -- cgit v1.2.1