summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/util
diff options
context:
space:
mode:
authorZack Rusin <zack@tungstengraphics.com>2008-04-29 17:21:10 -0400
committerZack Rusin <zack@tungstengraphics.com>2008-04-29 17:21:10 -0400
commit0d80f407f128f1a324e9dc0db2d0910bf32ba736 (patch)
treeb2a5fe1382e1874cc6fa63965de78238c8d36a67 /src/gallium/auxiliary/util
parent5692e09be8e8d1ed4803b528291b920df183c102 (diff)
silence p_debug.h:63: warning: ISO C forbids forward references to ‘enum’ types
Diffstat (limited to 'src/gallium/auxiliary/util')
-rw-r--r--src/gallium/auxiliary/util/p_debug.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/util/p_debug.c b/src/gallium/auxiliary/util/p_debug.c
index eaf2c9bd98..8ef2880191 100644
--- a/src/gallium/auxiliary/util/p_debug.c
+++ b/src/gallium/auxiliary/util/p_debug.c
@@ -413,11 +413,11 @@ char *pf_sprint_name( char *str, enum pipe_format format )
}
-void debug_print_format(const char *msg, enum pipe_format fmt )
+void debug_print_format(const char *msg, unsigned fmt )
{
char fmtstr[80];
- pf_sprint_name(fmtstr, fmt);
+ pf_sprint_name(fmtstr, (enum pipe_format)fmt);
debug_printf("%s: %s\n", msg, fmtstr);
}