From: Brian Paul Date: Wed, 26 Jun 2013 15:28:58 +0000 (-0600) Subject: hud: add cast to silence MSVC warning X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=61964a9cebd972a802ca6517f3438452ab2d340b;p=mesa.git hud: add cast to silence MSVC warning --- diff --git a/src/gallium/auxiliary/hud/hud_fps.c b/src/gallium/auxiliary/hud/hud_fps.c index 6e9be712b66..a360bc2ed04 100644 --- a/src/gallium/auxiliary/hud/hud_fps.c +++ b/src/gallium/auxiliary/hud/hud_fps.c @@ -52,7 +52,7 @@ query_fps(struct hud_graph *gr) info->frames = 0; info->last_time = now; - hud_graph_add_value(gr, fps); + hud_graph_add_value(gr, (uint64_t) fps); } } else {