svn commit: r464553 - head/net-p2p/amule/files
Barbara Guida
bar at FreeBSD.org
Thu Mar 15 03:03:07 UTC 2018
Author: bar
Date: Thu Mar 15 03:03:06 2018
New Revision: 464553
URL: https://svnweb.freebsd.org/changeset/ports/464553
Log:
Attempt to fix on HEAD.
Added:
head/net-p2p/amule/files/patch-src_webserver_src_php_syntree.cpp (contents, props changed)
Added: head/net-p2p/amule/files/patch-src_webserver_src_php_syntree.cpp
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/net-p2p/amule/files/patch-src_webserver_src_php_syntree.cpp Thu Mar 15 03:03:06 2018 (r464553)
@@ -0,0 +1,11 @@
+--- src/webserver/src/php_syntree.cpp.orig 2016-09-16 09:55:07.000000000 +0200
++++ src/webserver/src/php_syntree.cpp 2018-03-15 03:38:18.205741000 +0100
+@@ -926,7 +926,7 @@
+ switch(val->type) {
+ case PHP_VAL_NONE: buff[0] = 0; break;
+ case PHP_VAL_BOOL:
+- case PHP_VAL_INT: snprintf(buff, sizeof(buff), "%"PRIu64, val->int_val); break;
++ case PHP_VAL_INT: snprintf(buff, sizeof(buff), "%" PRIu64, val->int_val); break;
+ case PHP_VAL_FLOAT: snprintf(buff, sizeof(buff), "%.02f", val->float_val); break;
+ case PHP_VAL_STRING: return;
+ case PHP_VAL_ARRAY: {
More information about the svn-ports-all
mailing list