[geos-commits] [SCM] GEOS branch master updated. 99014ed70e929494f044013628ba87ed0caf8fdb

git at osgeo.org git at osgeo.org
Thu Jan 7 14:24:26 PST 2021


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GEOS".

The branch, master has been updated
       via  99014ed70e929494f044013628ba87ed0caf8fdb (commit)
       via  f699cf5bb0d200ac4420169e9bd95403b163205a (commit)
      from  518105d6da791a16d05629e2073be19433d93ddf (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 99014ed70e929494f044013628ba87ed0caf8fdb
Merge: f699cf5 518105d
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date:   Thu Jan 7 14:24:25 2021 -0800

    Merge branch 'master' of https://git.osgeo.org/gitea/geos/geos


commit f699cf5bb0d200ac4420169e9bd95403b163205a
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date:   Thu Jan 7 14:24:18 2021 -0800

    Printf unsigned int with %u

diff --git a/src/deps/ryu/d2s.c b/src/deps/ryu/d2s.c
index 3e5beed..9a6ce17 100644
--- a/src/deps/ryu/d2s.c
+++ b/src/deps/ryu/d2s.c
@@ -629,8 +629,8 @@ static inline int to_chars_fixed(const floating_decimal_64 v, const bool sign, u
 	printf("EXP=%d\n", v.exponent);
 	printf("INTEGER=%lu\n", integer_part);
 	printf("DECIMAL=%lu\n", decimal_part);
-	printf("EXTRA TRAILING ZEROS=%lu\n", trailing_integer_zeros);
-	printf("EXTRA LEADING ZEROS=%lu\n", leading_decimal_zeros);
+	printf("EXTRA TRAILING ZEROS=%u\n", trailing_integer_zeros);
+	printf("EXTRA LEADING ZEROS=%u\n", leading_decimal_zeros);
 #endif
 
 	/* If we have removed all digits, it may happen that we have -0 and we want it to be just 0 */

-----------------------------------------------------------------------

Summary of changes:
 src/deps/ryu/d2s.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
GEOS


More information about the geos-commits mailing list