diff options
author | Tom Hughes <tomhughes@chromium.org> | 2021-10-18 17:34:12 +0000 |
---|---|---|
committer | Commit Bot <commit-bot@chromium.org> | 2021-10-18 22:00:46 +0000 |
commit | 0ce1c0db7c906943d22c58c50d2182e87f46de8c (patch) | |
tree | e9640d87062ec8b4f7b2810047ee554bcf1f34ed /common/gesture.c | |
parent | 705fd9970f12bce63f8caa9371f633488e6432ee (diff) | |
download | chrome-ec-0ce1c0db7c906943d22c58c50d2182e87f46de8c.tar.gz |
tree: Files should end with single newline
One of the checks that runs as part of "repo upload" looks for a single
newline at the end of each file. I'm getting warnings about this when I
touch files that do not follow this, even though I didn't add the extra
newlines.
This commit fixes all files by running the following:
for f in $(find . -name '*.[ch]');
do printf '%s\n' "$(cat ${f})" > ${f};
done
BRANCH=none
BUG=b:172020503
TEST=./util/compare_build.sh -b all -j 120
=> MATCH
Signed-off-by: Tom Hughes <tomhughes@chromium.org>
Change-Id: Ia3ece5b64b549d21ca11708791368002bb6e9b0e
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3229797
Reviewed-by: Aseda Aboagye <aaboagye@chromium.org>
Diffstat (limited to 'common/gesture.c')
-rw-r--r-- | common/gesture.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/common/gesture.c b/common/gesture.c index 88d79448a5..0ccd358d54 100644 --- a/common/gesture.c +++ b/common/gesture.c @@ -332,4 +332,3 @@ static int command_tap_info(int argc, char **argv) DECLARE_CONSOLE_COMMAND(tapinfo, command_tap_info, "debug on/off", "Print tap information"); - |