]> granicus.if.org Git - php/commitdiff
fix comments
authorAntony Dovgal <tony2001@php.net>
Fri, 4 May 2007 16:20:21 +0000 (16:20 +0000)
committerAntony Dovgal <tony2001@php.net>
Fri, 4 May 2007 16:20:21 +0000 (16:20 +0000)
Zend/zend_strtod.c

index b1289c58f7c75b0cdc3392391aa2948c42b17e2c..a20e76bebd2a5c1875b559208cf1a0641cbd032b 100644 (file)
@@ -276,9 +276,9 @@ BEGIN_EXTERN_C()
 #endif
 
 /* The following definition of Storeinc is appropriate for MIPS processors.
- *  * An alternative that might be better on some machines is
- *   * #define Storeinc(a,b,c) (*a++ = b << 16 | c & 0xffff)
- *    */
+ * An alternative that might be better on some machines is
+ * #define Storeinc(a,b,c) (*a++ = b << 16 | c & 0xffff)
+ */
 #if defined(IEEE_LITTLE_ENDIAN) + defined(VAX) + defined(__arm__)
 #define Storeinc(a,b,c) (((unsigned short *)a)[1] = (unsigned short)b, \
                ((unsigned short *)a)[0] = (unsigned short)c, a++)