summaryrefslogtreecommitdiff
path: root/atspi/atspi-table-cell.c
diff options
context:
space:
mode:
authorMike Gorse <mgorse@alum.wpi.edu>2019-02-27 09:14:41 -0600
committerMike Gorse <mgorse@alum.wpi.edu>2019-02-27 09:14:41 -0600
commit519f6850fe931a088544489c42ec5246fe7b327a (patch)
tree027bec9f0be069e98c397ae13a29b762d2bcaf48 /atspi/atspi-table-cell.c
parent6015e2baf4ab5bdc501872827205bec37dead7ec (diff)
downloadat-spi2-core-519f6850fe931a088544489c42ec5246fe7b327a.tar.gz
Fix atspi_table_cell_get_(row|column)_headers
The sanity check was looking for the wrong signature, causing the functions to fail.
Diffstat (limited to 'atspi/atspi-table-cell.c')
-rw-r--r--atspi/atspi-table-cell.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/atspi/atspi-table-cell.c b/atspi/atspi-table-cell.c
index 1df1fa90..13203bf6 100644
--- a/atspi/atspi-table-cell.c
+++ b/atspi/atspi-table-cell.c
@@ -34,7 +34,7 @@ get_object_array_and_unref (DBusMessage *reply)
if (!reply)
return NULL;
- if (strcmp (dbus_message_get_signature (reply), "(so)") != 0)
+ if (strcmp (dbus_message_get_signature (reply), "a(so)") != 0)
{
dbus_message_unref (reply);
return NULL;