From 31af741c667a51a1a6a39b3a20bf2d47311c2750 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Fri, 6 Jan 2023 13:40:10 -0500 Subject: LibGfx: Rename variable in parse_profile_id() to match spec better --- Userland/Libraries/LibGfx/ICCProfile.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Userland/Libraries/LibGfx') diff --git a/Userland/Libraries/LibGfx/ICCProfile.cpp b/Userland/Libraries/LibGfx/ICCProfile.cpp index c56e155833..294a57fb6b 100644 --- a/Userland/Libraries/LibGfx/ICCProfile.cpp +++ b/Userland/Libraries/LibGfx/ICCProfile.cpp @@ -251,13 +251,13 @@ Optional parse_profile_id(ICCHeader const& header if (all_bytes_are_zero(header.profile_id)) return {}; - Crypto::Hash::MD5::DigestType md5; - static_assert(sizeof(md5.data) == sizeof(header.profile_id)); - memcpy(md5.data, header.profile_id, sizeof(md5.data)); + Crypto::Hash::MD5::DigestType id; + static_assert(sizeof(id.data) == sizeof(header.profile_id)); + memcpy(id.data, header.profile_id, sizeof(id.data)); // FIXME: Consider comparing read id with compute_id() result and failing if they aren't equal. - return md5; + return id; } ErrorOr parse_reserved(ICCHeader const& header) -- cgit v1.2.3