From ae5f61e60db8afc6a59ced74e82892069d64f482 Mon Sep 17 00:00:00 2001 From: Azaezel Date: Fri, 14 Oct 2016 16:28:06 -0500 Subject: [PATCH] clang: format_token string format correction --- Engine/source/core/util/uuid.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Engine/source/core/util/uuid.cpp b/Engine/source/core/util/uuid.cpp index 64cd2bbf0..6b4d6a5ac 100644 --- a/Engine/source/core/util/uuid.cpp +++ b/Engine/source/core/util/uuid.cpp @@ -167,7 +167,7 @@ static void create_uuid_state(uuid_state *st) */ static void format_token(char *target, const xuuid_t *u) { - sprintf(target, "%08lx-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x", + sprintf(target, "%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x", u->time_low, u->time_mid, u->time_hi_and_version, u->clock_seq_hi_and_reserved, u->clock_seq_low, u->node[0], u->node[1], u->node[2],