summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2010-02-19 13:44:12 -0700
committerBrian Paul <brianp@vmware.com>2010-02-19 13:44:12 -0700
commit150cce6aef85d22b5d32fba5d27605a98be6794a (patch)
tree2d8118efb1791e7338e7914ed813855b436e8986 /src
parent78a0c353d0f87c85feaa6dcb3042fc25d424f21b (diff)
mesa: fix snprintf() typo
Diffstat (limited to 'src')
-rw-r--r--src/mesa/shader/program_parse.tab.c6
-rw-r--r--src/mesa/shader/program_parse.y2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/shader/program_parse.tab.c b/src/mesa/shader/program_parse.tab.c
index 52f6084358..5679b64974 100644
--- a/src/mesa/shader/program_parse.tab.c
+++ b/src/mesa/shader/program_parse.tab.c
@@ -5559,18 +5559,18 @@ make_error_string(const char *fmt, ...)
va_start(args, fmt);
- /* Call v_mesa_snprintf once to determine how large the final string is. Call it
+ /* Call vsnprintf once to determine how large the final string is. Call it
* again to do the actual formatting. from the v_mesa_snprintf manual page:
*
* Upon successful return, these functions return the number of
* characters printed (not including the trailing '\0' used to end
* output to strings).
*/
- length = 1 + v_mesa_snprintf(NULL, 0, fmt, args);
+ length = 1 + vsnprintf(NULL, 0, fmt, args);
str = malloc(length);
if (str) {
- v_mesa_snprintf(str, length, fmt, args);
+ vsnprintf(str, length, fmt, args);
}
va_end(args);
diff --git a/src/mesa/shader/program_parse.y b/src/mesa/shader/program_parse.y
index 75cb4cf479..d5fb0fac3e 100644
--- a/src/mesa/shader/program_parse.y
+++ b/src/mesa/shader/program_parse.y
@@ -2609,7 +2609,7 @@ make_error_string(const char *fmt, ...)
str = malloc(length);
if (str) {
- v_mesa_snprintf(str, length, fmt, args);
+ vsnprintf(str, length, fmt, args);
}
va_end(args);