diff --git a/include/internal/cef_types.h b/include/internal/cef_types.h index 60235e20b..41a2d578f 100644 --- a/include/internal/cef_types.h +++ b/include/internal/cef_types.h @@ -99,7 +99,7 @@ typedef uint32 cef_color_t; // Return an cef_color_t value with the specified byte component values. #define CefColorSetARGB(a, r, g, b) \ - static_cast( \ + static_cast( \ (static_cast(a) << 24) | \ (static_cast(r) << 16) | \ (static_cast(g) << 8) | \