summaryrefslogtreecommitdiff
path: root/dbus-proxy
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2015-08-27 16:15:35 +0200
committerAlexander Larsson <alexl@redhat.com>2015-08-27 16:15:35 +0200
commite5e5389bb39030b05eff6f6af0be7e5fcaa28ef8 (patch)
tree2cf8a14e17b82246aa155639677cc956d2a86737 /dbus-proxy
parent53df4188142ab9b2ceeb251cc34b495825ddaf24 (diff)
downloadxdg-app-e5e5389bb39030b05eff6f6af0be7e5fcaa28ef8.tar.gz
dbus-proxy: Avoid clang warning
Diffstat (limited to 'dbus-proxy')
-rw-r--r--dbus-proxy/xdg-app-proxy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dbus-proxy/xdg-app-proxy.c b/dbus-proxy/xdg-app-proxy.c
index 08dbd4d..333cc35 100644
--- a/dbus-proxy/xdg-app-proxy.c
+++ b/dbus-proxy/xdg-app-proxy.c
@@ -2097,7 +2097,7 @@ find_auth_end (XdgAppProxyClient *client, Buffer *buffer)
gsize left = strlen (AUTH_END_STRING) - client->auth_end_offset;
gsize to_match = MIN (left, buffer->pos);
/* Matched at least up to to_match */
- if (memcmp (buffer->data, AUTH_END_STRING + client->auth_end_offset, to_match) == 0)
+ if (memcmp (buffer->data, &AUTH_END_STRING[client->auth_end_offset], to_match) == 0)
{
client->auth_end_offset += to_match;