aboutsummaryrefslogtreecommitdiffstats
path: root/progs/rbug/bin_to_bmp.c
diff options
context:
space:
mode:
authorRoland Scheidegger <[email protected]>2009-12-23 16:55:16 +0100
committerRoland Scheidegger <[email protected]>2009-12-23 16:57:46 +0100
commitfaae0e5da3c955ef98d87d127fda671de4bdb4a4 (patch)
treedbc9348c3987df3e123c2f3c2a7f7d53d8e7ace0 /progs/rbug/bin_to_bmp.c
parent315ca95666b3744f8c72c35135aea5d96de4cbb2 (diff)
rbug: rename pf_is_compressed to util_format_is_compressed
Diffstat (limited to 'progs/rbug/bin_to_bmp.c')
-rw-r--r--progs/rbug/bin_to_bmp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/progs/rbug/bin_to_bmp.c b/progs/rbug/bin_to_bmp.c
index 03ff622fee7..49a5416787a 100644
--- a/progs/rbug/bin_to_bmp.c
+++ b/progs/rbug/bin_to_bmp.c
@@ -28,6 +28,7 @@
#include "util/u_format.h"
#include "util/u_memory.h"
#include "util/u_debug.h"
+#include "util/u_format.h"
#include "util/u_network.h"
#include "util/u_tile.h"
@@ -73,7 +74,7 @@ static void dump(unsigned width, unsigned height,
util_snprintf(filename, 512, "%s.bmp", pf_name(src_format));
- if (pf_is_compressed(src_format)) {
+ if (util_format_is_compressed(src_format)) {
debug_printf("skipping: %s\n", filename);
return;
}