stas            Sat Feb 24 02:43:54 2007 UTC

  Modified files:              (Branch: PHP_5_2)
    /php-src/ext/bcmath/libbcmath/src   rt.c 
  Log:
  fix typos
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/bcmath/libbcmath/src/rt.c?r1=1.1.34.1&r2=1.1.34.2&diff_format=u
Index: php-src/ext/bcmath/libbcmath/src/rt.c
diff -u php-src/ext/bcmath/libbcmath/src/rt.c:1.1.34.1 
php-src/ext/bcmath/libbcmath/src/rt.c:1.1.34.2
--- php-src/ext/bcmath/libbcmath/src/rt.c:1.1.34.1      Sat Feb 24 02:17:24 2007
+++ php-src/ext/bcmath/libbcmath/src/rt.c       Sat Feb 24 02:43:53 2007
@@ -45,7 +45,7 @@
   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 @@
   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);

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to