summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVadim Bendebury <vbendeb@google.com>2022-06-16 14:19:29 -0700
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-06-16 23:58:52 +0000
commitf35ac201b4879af278a4202155560b064b86cccf (patch)
treed97a60e21ec06dd04ba1b604b64d09bac1e6c133
parentfb370abd1559241dc7ec13fedfe76f833ec679bd (diff)
downloadchrome-ec-firmware-chameleon-14947.B-cr50_stab.tar.gz
The new compiler version does not like mixing up arrays and pointers, BRANCH=none BUG=none TEST=compilation succeeds inside and outside chroot, gsctool updates succeed with Ti50 Signed-off-by: Vadim Bendebury <vbendeb@google.com> Change-Id: Ia507d27315bf601450a7d9b45cf20f98f4833a05 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3710276 Commit-Queue: Vadim Bendebury <vbendeb@chromium.org> Tested-by: Vadim Bendebury <vbendeb@chromium.org> Reviewed-by: Mary Ruthven <mruthven@chromium.org>
-rw-r--r--extra/usb_updater/desc_parser.h2
-rw-r--r--extra/usb_updater/gsctool.c5
2 files changed, 4 insertions, 3 deletions
diff --git a/extra/usb_updater/desc_parser.h b/extra/usb_updater/desc_parser.h
index faa80d1a63..76d8691b15 100644
--- a/extra/usb_updater/desc_parser.h
+++ b/extra/usb_updater/desc_parser.h
@@ -35,7 +35,7 @@ struct addr_range {
* success, or OS error of error. In particular ENODATA is returned if the
* section for the required board ID is not found in the file.
*/
-int parser_find_board(const char *hash_file_name, const char board_id[4]);
+int parser_find_board(const char *hash_file_name, const char *board_id);
/*
* Find next range for the previousely defined board, parse it into the
diff --git a/extra/usb_updater/gsctool.c b/extra/usb_updater/gsctool.c
index e57e9ba196..64a7853d31 100644
--- a/extra/usb_updater/gsctool.c
+++ b/extra/usb_updater/gsctool.c
@@ -3507,8 +3507,9 @@ int main(int argc, char *argv[])
if (get_boot_mode)
exit(process_get_boot_mode(&td));
- if (get_flog)
- process_get_flog(&td, prev_log_entry, show_machine_output, is_dauntless);
+ if (get_flog)
+ process_get_flog(&td, prev_log_entry,
+ show_machine_output, is_dauntless);
if (erase_ap_ro_hash)
process_erase_ap_ro_hash(&td);