diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-09-21 13:17:01 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-09-21 13:17:01 -0700 |
commit | 3f11f878a0e2b173df4fefaa8d89b5f38640ec1d (patch) | |
tree | 682c243ffd3cbcd0f25fad1eb3cd817821e81e8a | |
parent | bc9851415e121c2c0416252c97e23add9d80c482 (diff) |
(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.
-rw-r--r-- | src/dbusbind.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |