From e0a4e5ab99a45faa196b3894ade8c375061a7ab6 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Fri, 30 Apr 2021 16:24:50 -0700 Subject: util: Add explicit casts When compiling with C++, the implicit casting that is performed in C is disallowed. Add casts in preparation for C++ compatibility. BRANCH=none BUG=b:144959033 TEST=make buildall Signed-off-by: Tom Hughes Change-Id: I5c25440819428db65225c772c1c5115a735db58a Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2864519 Reviewed-by: Daisuke Nojiri --- util/comm-host.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'util/comm-host.c') diff --git a/util/comm-host.c b/util/comm-host.c index dd42df1aa8..45d6f85a02 100644 --- a/util/comm-host.c +++ b/util/comm-host.c @@ -58,7 +58,7 @@ static int fake_readmem(int offset, int bytes, void *dest) if (c < 0) return c; - buf = dest; + buf = (char *)(dest); for (c = 0; c < EC_MEMMAP_TEXT_MAX; c++) { if (buf[c] == 0) return c; -- cgit v1.2.1