summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2013-06-26 09:28:58 -0600
committerBrian Paul <[email protected]>2013-06-26 10:42:59 -0600
commit61964a9cebd972a802ca6517f3438452ab2d340b (patch)
tree5315db66299afb660a72d1a36719e77712c6543f
parentf06e60fde48d7249fef97d5295ff62ac424e583c (diff)
hud: add cast to silence MSVC warning
-rw-r--r--src/gallium/auxiliary/hud/hud_fps.c2
1 files changed, 1 insertions, 1 deletions
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 {