From: Jakob Bornecrantz Date: Thu, 29 Apr 2010 15:58:42 +0000 (+0100) Subject: util: Format error format string as the rest of the pipe formats X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3865e3abd429132be647bb7c9575dbf20e1ab11d;p=mesa.git util: Format error format string as the rest of the pipe formats --- 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;