From: Paul Eggert Date: Wed, 21 Sep 2011 20:17:01 +0000 (-0700) Subject: (xd_append_arg): Omit range check that is not needed X-Git-Tag: emacs-24.2.90~471^2~6^2~206 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3f11f878a0e2b173df4fefaa8d89b5f38640ec1d;p=emacs.git (xd_append_arg): Omit range check that is not needed on any practical host. GCC 4.6.1 incorrectly complains about it on x86-64. --- diff --git a/src/dbusbind.c b/src/dbusbind.c index 72cef0cbc86..e930ad16fe1 100644 --- a/src/dbusbind.c +++ b/src/dbusbind.c @@ -528,7 +528,7 @@ xd_append_arg (unsigned int dtype, Lisp_Object object, DBusMessageIter *iter) } case DBUS_TYPE_INT64: - CHECK_TYPE_RANGED_INTEGER (dbus_int64_t, object); + CHECK_NUMBER (object); { dbus_int64_t val = XINT (object); XD_DEBUG_MESSAGE ("%c %d", dtype, (int) val);