diff options
author | Matt Turner <[email protected]> | 2013-03-09 00:25:45 -0800 |
---|---|---|
committer | Matt Turner <[email protected]> | 2013-03-12 17:02:21 -0700 |
commit | 439c3d4e313370823d49b53f031697cc8b18d171 (patch) | |
tree | fd0128dd9f8be183b6be9ac16ec1eb01fefbce51 /src/mesa/main/errors.c | |
parent | 42c1b33f6d5ee1ab4ab7fdc8a7ab2c1dcd9e43e6 (diff) |
mesa: Replace MESA_VERSION with PACKAGE_VERSION.
One fewer place to have to update.
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa/main/errors.c')
-rw-r--r-- | src/mesa/main/errors.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/errors.c b/src/mesa/main/errors.c index 684f235c32a..1c1d85d414d 100644 --- a/src/mesa/main/errors.c +++ b/src/mesa/main/errors.c @@ -848,7 +848,7 @@ _mesa_problem( const struct gl_context *ctx, const char *fmtString, ... ) _mesa_vsnprintf( str, MAX_DEBUG_MESSAGE_LENGTH, fmtString, args ); va_end( args ); fprintf(stderr, "Mesa %s implementation error: %s\n", - MESA_VERSION_STRING, str); + PACKAGE_VERSION, str); fprintf(stderr, "Please report at bugs.freedesktop.org\n"); } } |