summaryrefslogtreecommitdiff
path: root/util/comm-lpc.c
diff options
context:
space:
mode:
authorTom Hughes <tomhughes@chromium.org>2021-04-30 16:24:50 -0700
committerCommit Bot <commit-bot@chromium.org>2021-05-06 17:29:59 +0000
commite0a4e5ab99a45faa196b3894ade8c375061a7ab6 (patch)
treeb20a581a87a8c8513068280cad1c496d7f472137 /util/comm-lpc.c
parent1f4c9670318eca8c6b7bdc674fa2a4930e21a5c4 (diff)
downloadchrome-ec-e0a4e5ab99a45faa196b3894ade8c375061a7ab6.tar.gz
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 <tomhughes@chromium.org> Change-Id: I5c25440819428db65225c772c1c5115a735db58a Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2864519 Reviewed-by: Daisuke Nojiri <dnojiri@chromium.org>
Diffstat (limited to 'util/comm-lpc.c')
-rw-r--r--util/comm-lpc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/comm-lpc.c b/util/comm-lpc.c
index a3a8f64ff7..d1ce761fc2 100644
--- a/util/comm-lpc.c
+++ b/util/comm-lpc.c
@@ -225,7 +225,7 @@ static int ec_command_lpc_3(int command, int version,
static int ec_readmem_lpc(int offset, int bytes, void *dest)
{
int i = offset;
- char *s = dest;
+ char *s = (char *)(dest);
int cnt = 0;
if (offset >= EC_MEMMAP_SIZE - bytes)