From 1d1f856b7433c08789293a6f91c7f102d75bd723 Mon Sep 17 00:00:00 2001 From: Andrei Emeltchenko Date: Mon, 27 Jan 2014 18:01:44 +0200 Subject: [PATCH] android/avctp: Trivial cleanup code Avoid extra header calculation and fix wrong line indentation. --- android/avctp.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/android/avctp.c b/android/avctp.c index 615fecf9f..6f9b33bb2 100644 --- a/android/avctp.c +++ b/android/avctp.c @@ -798,8 +798,7 @@ failed: return FALSE; } -static gboolean session_cb(GIOChannel *chan, GIOCondition cond, - gpointer data) +static gboolean session_cb(GIOChannel *chan, GIOCondition cond, gpointer data) { struct avctp *session = data; struct avctp_channel *control = session->control; @@ -836,7 +835,7 @@ static gboolean session_cb(GIOChannel *chan, GIOCondition cond, ret -= sizeof(struct avc_header); - operands = buf + sizeof(struct avctp_header) + sizeof(struct avc_header); + operands = (uint8_t *) avc + sizeof(struct avc_header); operand_count = ret; if (avctp->cr == AVCTP_RESPONSE) { -- 2.47.3