summaryrefslogtreecommitdiff
path: root/src/mesa/main/errors.c
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2013-03-09 00:25:45 -0800
committerMatt Turner <mattst88@gmail.com>2013-03-12 17:02:21 -0700
commit439c3d4e313370823d49b53f031697cc8b18d171 (patch)
treefd0128dd9f8be183b6be9ac16ec1eb01fefbce51 /src/mesa/main/errors.c
parent42c1b33f6d5ee1ab4ab7fdc8a7ab2c1dcd9e43e6 (diff)
mesa: Replace MESA_VERSION with PACKAGE_VERSION.
One fewer place to have to update. Reviewed-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'src/mesa/main/errors.c')
-rw-r--r--src/mesa/main/errors.c2
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");
}
}