diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2007-10-10 13:04:08 +0100 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2007-10-11 10:06:54 +0100 |
commit | a2eace3a8b304a1a5ec41bb1a0ef14062a74b0af (patch) | |
tree | 8b522c1c527ddf2ace946838dbcbd21d8fe08716 /dbus | |
parent | 6b512e4ee74e9bd1606e01a48fde2a69ca10a96a (diff) |
Use DBUS_GNUC_EXTENSION to avoid -ansi -pedantic warnings about use of long long. (#717)
Diffstat (limited to 'dbus')
-rw-r--r-- | dbus/dbus-arch-deps.h.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dbus/dbus-arch-deps.h.in b/dbus/dbus-arch-deps.h.in index 2a02a7f5..65d406ad 100644 --- a/dbus/dbus-arch-deps.h.in +++ b/dbus/dbus-arch-deps.h.in @@ -33,8 +33,8 @@ DBUS_BEGIN_DECLS #if @DBUS_HAVE_INT64@ #define DBUS_HAVE_INT64 1 -typedef @DBUS_INT64_TYPE@ dbus_int64_t; -typedef unsigned @DBUS_INT64_TYPE@ dbus_uint64_t; +DBUS_GNUC_EXTENSION typedef @DBUS_INT64_TYPE@ dbus_int64_t; +DBUS_GNUC_EXTENSION typedef unsigned @DBUS_INT64_TYPE@ dbus_uint64_t; #define DBUS_INT64_CONSTANT(val) @DBUS_INT64_CONSTANT@ #define DBUS_UINT64_CONSTANT(val) @DBUS_UINT64_CONSTANT@ |