diff --git a/Userland/Libraries/LibGfx/ICCProfile.h b/Userland/Libraries/LibGfx/ICCProfile.h index 585aa1d619..4d8f2d143f 100644 --- a/Userland/Libraries/LibGfx/ICCProfile.h +++ b/Userland/Libraries/LibGfx/ICCProfile.h @@ -27,7 +27,7 @@ enum class FourCCType { template struct DistinctFourCC { - u32 value; + u32 value { 0 }; char c0() const { return value >> 24; } char c1() const { return (value >> 16) & 0xff; }