From 3f11f878a0e2b173df4fefaa8d89b5f38640ec1d Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Wed, 21 Sep 2011 13:17:01 -0700 Subject: (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. --- src/dbusbind.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/dbusbind.c') diff --git a/src/dbusbind.c b/src/dbusbind.c index 72cef0cbc8..e930ad16fe 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); -- cgit v1.2.3