diff options
author | Grazvydas Ignotas <[email protected]> | 2018-02-03 23:42:28 +0200 |
---|---|---|
committer | Grazvydas Ignotas <[email protected]> | 2018-02-08 01:12:07 +0200 |
commit | 13ada91740769a3183f21d974193769262f5ee0f (patch) | |
tree | 30309a53287be303b24a799808a726689dc6b14c /src/gallium/auxiliary/hud/hud_diskstat.c | |
parent | 09f49b9e50ee86e24c7e975f08535aa7237852a1 (diff) |
gallium/hud: update some query functions
It seems these were missed when struct pipe_context * argument was
added to hud_graph::query_new_value.
Fixes: 3132afdf4c "gallium/hud: pass pipe_context explicitly to most functions"
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/hud/hud_diskstat.c')
-rw-r--r-- | src/gallium/auxiliary/hud/hud_diskstat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/hud/hud_diskstat.c b/src/gallium/auxiliary/hud/hud_diskstat.c index 44174d655db..7eaaf35a7c7 100644 --- a/src/gallium/auxiliary/hud/hud_diskstat.c +++ b/src/gallium/auxiliary/hud/hud_diskstat.c @@ -117,7 +117,7 @@ get_file_values(const char *fn, struct stat_s *s) } static void -query_dsi_load(struct hud_graph *gr) +query_dsi_load(struct hud_graph *gr, struct pipe_context *pipe) { /* The framework calls us periodically, compensate for the * calling interval accordingly when reporting per second. |