diff options
author | Vinson Lee <[email protected]> | 2010-02-17 22:55:16 -0800 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2010-02-17 22:55:16 -0800 |
commit | 8266f1e5a5a2f066e4dd0e7bf3273d6edcbff760 (patch) | |
tree | b6c1483757e0637f467bb0e3031b60d04743d012 /progs/rbug/bin_to_bmp.c | |
parent | 20a11722a2d4453c614381004b683993428de30e (diff) |
progs/rbug: Use util_format_name().
Diffstat (limited to 'progs/rbug/bin_to_bmp.c')
-rw-r--r-- | progs/rbug/bin_to_bmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/progs/rbug/bin_to_bmp.c b/progs/rbug/bin_to_bmp.c index 18dd57b0349..6e9b162a6f7 100644 --- a/progs/rbug/bin_to_bmp.c +++ b/progs/rbug/bin_to_bmp.c @@ -74,7 +74,7 @@ static void dump(unsigned width, unsigned height, rgba = MALLOC(dst_size); } - util_snprintf(filename, 512, "%s.bmp", pf_name(src_format)); + util_snprintf(filename, 512, "%s.bmp", util_format_name(src_format)); if (util_format_is_compressed(src_format)) { debug_printf("skipping: %s\n", filename); |