diff options
author | Jakob Bornecrantz <[email protected]> | 2010-04-29 16:58:42 +0100 |
---|---|---|
committer | Jakob Bornecrantz <[email protected]> | 2010-04-29 17:00:21 +0100 |
commit | 3865e3abd429132be647bb7c9575dbf20e1ab11d (patch) | |
tree | eb16b6e781a42ca44642aeb8b85cf44c5a0eb2e8 | |
parent | c4e89d130f99be0897829c1a1721c63bc07bdbfc (diff) |
util: Format error format string as the rest of the pipe formats
-rw-r--r-- | src/gallium/auxiliary/util/u_format.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_format.h b/src/gallium/auxiliary/util/u_format.h index 605b13bd114..fb6ade5c06b 100644 --- a/src/gallium/auxiliary/util/u_format.h +++ b/src/gallium/auxiliary/util/u_format.h @@ -332,7 +332,7 @@ util_format_name(enum pipe_format format) assert(desc); if (!desc) { - return "???"; + return "PIPE_FORMAT_???"; } return desc->name; |