summaryrefslogtreecommitdiff
path: root/ext/bcmath
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2007-02-24 02:43:53 +0000
committerStanislav Malyshev <stas@php.net>2007-02-24 02:43:53 +0000
commitb107f3bfbe00ca41de5d093e74386ae74d34a2d1 (patch)
tree4144b14d56b2493e1d114c59c771cc57594f7669 /ext/bcmath
parent50ea26760da4e0fcf4980e739e1d0ed520de8d59 (diff)
downloadphp-git-b107f3bfbe00ca41de5d093e74386ae74d34a2d1.tar.gz
fix typos
Diffstat (limited to 'ext/bcmath')
-rw-r--r--ext/bcmath/libbcmath/src/rt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/bcmath/libbcmath/src/rt.c b/ext/bcmath/libbcmath/src/rt.c
index d652021f89..5a98b68f7e 100644
--- a/ext/bcmath/libbcmath/src/rt.c
+++ b/ext/bcmath/libbcmath/src/rt.c
@@ -45,7 +45,7 @@ void bc_rt_warn (char *mesg ,...)
char error_mesg [255];
va_start (args, mesg);
- vsnprintf (error_mesg, sizeof(error_msg), mesg, args);
+ vsnprintf (error_mesg, sizeof(error_mesg), mesg, args);
va_end (args);
fprintf (stderr, "bc math warning: %s\n", error_mesg);
@@ -58,7 +58,7 @@ void bc_rt_error (char *mesg ,...)
char error_mesg [255];
va_start (args, mesg);
- vsnprintf (error_mesg, sizeof(error_msg), mesg, args);
+ vsnprintf (error_mesg, sizeof(error_mesg), mesg, args);
va_end (args);
fprintf (stderr, "bc math error: %s\n", error_mesg);