From 3ed9db546e1143bc9aa2d83a6f423fdd81227352 Mon Sep 17 00:00:00 2001 From: Havoc Pennington Date: Fri, 28 Jan 2005 03:06:56 +0000 Subject: 2005-01-27 Havoc Pennington * dbus/dbus-arch-deps.h.in: add 16/32-bit types * configure.in: find the right type for 16 and 32 bit ints as well as 64 * dbus/dbus-protocol.h (DBUS_TYPE_INT16, DBUS_TYPE_UINT16): add the 16-bit types so people don't have to stuff them in 32-bit or byte arrays. --- dbus/dbus-marshal-validate-util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dbus/dbus-marshal-validate-util.c') diff --git a/dbus/dbus-marshal-validate-util.c b/dbus/dbus-marshal-validate-util.c index 6915c054..7a1648fa 100644 --- a/dbus/dbus-marshal-validate-util.c +++ b/dbus/dbus-marshal-validate-util.c @@ -68,7 +68,7 @@ static const ValidityTest signature_tests[] = { { "i", DBUS_VALID }, { "ai", DBUS_VALID }, { "(i)", DBUS_VALID }, - { "q", DBUS_INVALID_UNKNOWN_TYPECODE }, + { "w", DBUS_INVALID_UNKNOWN_TYPECODE }, { "a", DBUS_INVALID_MISSING_ARRAY_ELEMENT_TYPE }, { "aaaaaa", DBUS_INVALID_MISSING_ARRAY_ELEMENT_TYPE }, { "ii(ii)a", DBUS_INVALID_MISSING_ARRAY_ELEMENT_TYPE }, -- cgit