helly           Sun Aug 14 16:12:52 2005 EDT

  Modified files:              
    /php-src/main       spprintf.c 
  Log:
  - Where did my backslash vanish?
  
http://cvs.php.net/diff.php/php-src/main/spprintf.c?r1=1.28&r2=1.29&ty=u
Index: php-src/main/spprintf.c
diff -u php-src/main/spprintf.c:1.28 php-src/main/spprintf.c:1.29
--- php-src/main/spprintf.c:1.28        Sun Aug 14 16:11:05 2005
+++ php-src/main/spprintf.c     Sun Aug 14 16:12:51 2005
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: spprintf.c,v 1.28 2005/08/14 20:11:05 helly Exp $ */
+/* $Id: spprintf.c,v 1.29 2005/08/14 20:12:51 helly Exp $ */
 
 /* This is the spprintf implementation.
  * It has emerged from apache snprintf. See original header:
@@ -128,7 +128,7 @@
 
 #define INS_STRING(unicode, s_uni, xbuf, s, slen)      \
 do {                                                                           
                \
-       if (unicode) {
+       if (unicode) {                                                          
        \
                size_t newlen, p, sz = 2*(slen);                        \
                smart_str_alloc(xbuf, (sz), 0);                         \
                if (s_uni) {                                                    
        \

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

Reply via email to