From 9fc9505c09edbbbb3210a0cc6333174fc8feade3 Mon Sep 17 00:00:00 2001 From: Richard Acayan Date: Mon, 9 Jan 2023 18:35:49 -0500 Subject: [PATCH] fastrpc: correct reference to android code The REMOTE_SCALARS_*() macros are actually in fastrpc.git/inc/remote.h. Correct the reference so these macros can be traced to their origin. --- fastrpc/fastrpc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastrpc/fastrpc.h b/fastrpc/fastrpc.h index ba29d61..780f084 100644 --- a/fastrpc/fastrpc.h +++ b/fastrpc/fastrpc.h @@ -26,7 +26,7 @@ #include #include -// See fastrpc.git/src/remotectl_stub.c +// See fastrpc.git/inc/remote.h #define REMOTE_SCALARS_MAKEX(nAttr,nMethod,nIn,nOut,noIn,noOut) \ ((((uint32_t) (nAttr) & 0x7) << 29) | \ (((uint32_t) (nMethod) & 0x1f) << 24) | \