andrey Tue Jun 16 17:59:19 2009 UTC
Modified files:
/php-src/ext/mysqlnd mysqlnd_ps.c
Log:
C-comments should be used
http://cvs.php.net/viewvc.cgi/php-src/ext/mysqlnd/mysqlnd_ps.c?r1=1.31&r2=1.32&diff_format=u
Index: php-src/ext/mysqlnd/mysqlnd_ps.c
diff -u php-src/ext/mysqlnd/mysqlnd_ps.c:1.31
php-src/ext/mysqlnd/mysqlnd_ps.c:1.32
--- php-src/ext/mysqlnd/mysqlnd_ps.c:1.31 Tue Jun 16 09:15:09 2009
+++ php-src/ext/mysqlnd/mysqlnd_ps.c Tue Jun 16 17:59:19 2009
@@ -18,7 +18,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: mysqlnd_ps.c,v 1.31 2009/06/16 09:15:09 andrey Exp $ */
+/* $Id: mysqlnd_ps.c,v 1.32 2009/06/16 17:59:19 andrey Exp $ */
#include "php.h"
#include "mysqlnd.h"
#include "mysqlnd_wireprotocol.h"
@@ -871,7 +871,7 @@
result->meta->fields[i].max_length = Z_STRLEN_P(data);
}
stmt->result_bind[i].zv->value
= data->value;
- // copied data, thus also the
ownership. Thus null data
+ /* copied data, thus also the
ownership. Thus null data */
ZVAL_NULL(data);
}
}
@@ -1047,7 +1047,7 @@
result->meta->fields[i].max_length = Z_STRLEN_P(data);
}
stmt->result_bind[i].zv->value
= data->value;
- // copied data, thus also the
ownership. Thus null data
+ /* copied data, thus also the
ownership. Thus null data */
ZVAL_NULL(data);
}
}
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php