From 0abca7a289c176adebb0656a35a913b8b5f1d3e8 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Fri, 8 Feb 2019 21:52:42 +0000 Subject: [PATCH] Bug 1525199 - Part 2 - removed size_t from GfxVarUpdate IPC messages; r=jrmuizel These are indexes into an array of prefs so we're nowhere near needing to worry about >32-bit values. Differential Revision: https://phabricator.services.mozilla.com/D19193 --HG-- extra : moz-landing-system : lando --- gfx/ipc/GraphicsMessages.ipdlh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gfx/ipc/GraphicsMessages.ipdlh b/gfx/ipc/GraphicsMessages.ipdlh index ffa9e0e74275..8a8526799849 100644 --- a/gfx/ipc/GraphicsMessages.ipdlh +++ b/gfx/ipc/GraphicsMessages.ipdlh @@ -98,7 +98,7 @@ union GfxVarValue struct GfxVarUpdate { - size_t index; + uint32_t index; GfxVarValue value; };