Changeset: cccaf3bbbb5b for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=cccaf3bbbb5b
Modified Files:
        gdk/gdk_atoms.c
Branch: Jul2015
Log Message:

Fix printing of hge value -9223372036854775808.


diffs (12 lines):

diff --git a/gdk/gdk_atoms.c b/gdk/gdk_atoms.c
--- a/gdk/gdk_atoms.c
+++ b/gdk/gdk_atoms.c
@@ -765,7 +765,7 @@ hgeToStr(char **dst, int *len, const hge
                strncpy(*dst, "nil", *len);
                return 3;
        }
-       if ((hge) GDK_lng_min <= *src && *src <= (hge) GDK_lng_max) {
+       if ((hge) GDK_lng_min < *src && *src <= (hge) GDK_lng_max) {
                lng s = (lng) *src;
                return lngToStr(dst, len, &s);
        } else {
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to