Clang format

GitOrigin-RevId: 90772439cd008f07b4ead07f68dacf9594eb9d0e
This commit is contained in:
Dietrich Epp 2021-03-05 12:51:11 -05:00
parent bd293bb3dd
commit cce3f39184
2 changed files with 25 additions and 1 deletions

22
.clang-format Normal file
View File

@ -0,0 +1,22 @@
---
BasedOnStyle: Google
AccessModifierOffset: -4
AllowShortFunctionsOnASingleLine: Inline
AllowShortIfStatementsOnASingleLine: false
AllowShortLoopsOnASingleLine: false
DerivePointerAlignment: false
IncludeBlocks: Preserve
IncludeCategories:
- Regex: '^".*'
Priority: 1
- Regex: '^<.*\.h>'
Priority: 3
- Regex: '^<.*'
Priority: 2
IndentCaseLabels: false
IndentWidth: 4
PointerAlignment: Right
SpacesBeforeTrailingComments: 1
Standard: Cpp11
TabWidth: 4
UseTab: AlignWithSpaces

4
sync.c
View File

@ -53,7 +53,9 @@ static int list_dir(const char *dirpath) {
if (err == fnfErr) {
break;
}
fprintf(stderr, "## Error: could not list directory '%s' (err = %d)\n", dirpath, err);
fprintf(stderr,
"## Error: could not list directory '%s' (err = %d)\n",
dirpath, err);
continue;
}
ppath[ppath[0] + 1] = '\0';