summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack Rosenthal <jrosenth@chromium.org>2022-06-27 14:43:34 -0600
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-07-01 00:24:08 +0000
commitc0b1794196d606b846b60d6a7db48e97a644bb3e (patch)
tree418f23756c081de24f00e22586fbf5c946ae2840
parentaaaa3c770ea55617728f48bbe73245cae425327a (diff)
downloadchrome-ec-c0b1794196d606b846b60d6a7db48e97a644bb3e.tar.gz
core/host/main.c: Format with clang-format
BUG=b:236386294 BRANCH=none TEST=none Change-Id: I3a1f9146cfae34e64236839461b1586efab0595a Signed-off-by: Jack Rosenthal <jrosenth@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3729841 Reviewed-by: Jeremy Bettis <jbettis@chromium.org>
-rw-r--r--core/host/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/host/main.c b/core/host/main.c
index ed7032eb63..8fdcde11c0 100644
--- a/core/host/main.c
+++ b/core/host/main.c
@@ -19,7 +19,7 @@
/* Console output macros */
#define CPUTS(outstr) cputs(CC_SYSTEM, outstr)
-#define CPRINTS(format, args...) cprints(CC_SYSTEM, format, ## args)
+#define CPRINTS(format, args...) cprints(CC_SYSTEM, format, ##args)
const char *__prog_name;
@@ -85,7 +85,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
* We lose the program name as LLVM fuzzer takes over main function:
* make up one.
*/
- static const char *name = STRINGIFY(PROJECT)".exe";
+ static const char *name = STRINGIFY(PROJECT) ".exe";
if (!initialized) {
__prog_name = name;