aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlof Johansson <[email protected]>2015-03-03 13:22:32 +0100
committerOlof Johansson <[email protected]>2015-03-04 11:23:10 -0800
commitef59c25d1be9539890c03c4915cdd4b868191b6f (patch)
tree9852f560490f29d7da22697b3e2994daedcf7b68
parentf3f837e52b14bf84c2db65f622b5c31cd261100c (diff)
platform/chrome: cros_ec_dev - fix Unknown escape '%' warning
Fix the following sparse warning: drivers/platform/chrome/cros_ec_dev.c:64:45: sparse: Unknown escape '%' Reported-by: Dan Carpenter <[email protected]> Signed-off-by: Olof Johansson <[email protected]> Reviewed-by: Gwendal Grignou <[email protected]> Signed-off-by: Javier Martinez Canillas <[email protected]> Signed-off-by: Olof Johansson <[email protected]>
-rw-r--r--drivers/platform/chrome/cros_ec_dev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/chrome/cros_ec_dev.c b/drivers/platform/chrome/cros_ec_dev.c
index ce714317a59e..6090d0b2826f 100644
--- a/drivers/platform/chrome/cros_ec_dev.c
+++ b/drivers/platform/chrome/cros_ec_dev.c
@@ -61,7 +61,7 @@ static int ec_get_version(struct cros_ec_device *ec, char *str, int maxlen)
if (resp->current_image >= ARRAY_SIZE(current_image_name))
resp->current_image = 3; /* invalid */
- snprintf(str, maxlen, "%s\n%s\n%s\n\%s\n", CROS_EC_DEV_VERSION,
+ snprintf(str, maxlen, "%s\n%s\n%s\n%s\n", CROS_EC_DEV_VERSION,
resp->version_string_ro, resp->version_string_rw,
current_image_name[resp->current_image]);