diff options
| author | Michael Albinus | 2010-11-10 10:08:05 +0100 |
|---|---|---|
| committer | Michael Albinus | 2010-11-10 10:08:05 +0100 |
| commit | 01768686d4ad7b38f20170b8f791a1e7e33b791c (patch) | |
| tree | 1369535d03d875a850d19924764978bebcf0b61c /src | |
| parent | 3106121c9979ea4a2beee1485979f6e46e19f2a6 (diff) | |
| download | emacs-01768686d4ad7b38f20170b8f791a1e7e33b791c.tar.gz emacs-01768686d4ad7b38f20170b8f791a1e7e33b791c.zip | |
Fix syntax error in previous commit.
Diffstat (limited to 'src')
| -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 ec7a3ff7217..6ab976b58da 100644 --- a/src/dbusbind.c +++ b/src/dbusbind.c | |||
| @@ -163,7 +163,7 @@ int xd_in_read_queued_messages = 0; | |||
| 163 | || (type == DBUS_TYPE_DOUBLE) \ | 163 | || (type == DBUS_TYPE_DOUBLE) \ |
| 164 | || (type == DBUS_TYPE_STRING) \ | 164 | || (type == DBUS_TYPE_STRING) \ |
| 165 | || (type == DBUS_TYPE_OBJECT_PATH) \ | 165 | || (type == DBUS_TYPE_OBJECT_PATH) \ |
| 166 | || (type == DBUS_TYPE_SIGNATURE \ | 166 | || (type == DBUS_TYPE_SIGNATURE) \ |
| 167 | || (type == DBUS_TYPE_UNIX_FD)) | 167 | || (type == DBUS_TYPE_UNIX_FD)) |
| 168 | #else | 168 | #else |
| 169 | #define XD_BASIC_DBUS_TYPE(type) \ | 169 | #define XD_BASIC_DBUS_TYPE(type) \ |