diff options
author | Kristian Høgsberg <[email protected]> | 2010-02-19 12:32:24 -0500 |
---|---|---|
committer | Kristian Høgsberg <[email protected]> | 2010-02-19 12:32:24 -0500 |
commit | 298be2b028263b2c343a707662c6fbfa18293cb2 (patch) | |
tree | 97ebdbbd457cbb2803ab03125355885c49d22f55 /src/mesa/main/version.c | |
parent | 32f2fd1c5d6088692551c80352b7d6fa35b0cd09 (diff) |
Replace the _mesa_*printf() wrappers with the plain libc versions
Diffstat (limited to 'src/mesa/main/version.c')
-rw-r--r-- | src/mesa/main/version.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/version.c b/src/mesa/main/version.c index e474fe7fa51..0d01f160593 100644 --- a/src/mesa/main/version.c +++ b/src/mesa/main/version.c @@ -124,7 +124,7 @@ _mesa_compute_version(GLcontext *ctx) ctx->VersionString = (char *) malloc(max); if (ctx->VersionString) { - _mesa_snprintf(ctx->VersionString, max, "%u.%u Mesa " MESA_VERSION_STRING, - ctx->VersionMajor, ctx->VersionMinor); + snprintf(ctx->VersionString, max, "%u.%u Mesa " MESA_VERSION_STRING, + ctx->VersionMajor, ctx->VersionMinor); } } |