Use clang-tidy to add curly braces around one-line statements
The command used to reformat the files in this commit was: ./util/run-clang-tidy \ -clang-tidy-binary clang-tidy-11 -clang-apply-replacements-binary clang-apply-replacements-11 \ -checks=-*,readability-braces-around-statements \ -j 9 \ -fix \ -format \ -style=file \ -quiet clang-format -i --style=format $(git ls-files '*.c' '*.h') uncrustify -c .uncrustify.cfg --replace --no-backup $(git ls-files '*.c' '*.h') clang-format -i --style=format $(git ls-files '*.c' '*.h')
This commit is contained in:
@@ -34,19 +34,21 @@ static isc_errorcallback_t fatal_callback = default_fatal_callback;
|
||||
void
|
||||
isc_error_setunexpected(isc_errorcallback_t cb)
|
||||
{
|
||||
if (cb == NULL)
|
||||
if (cb == NULL) {
|
||||
unexpected_callback = default_unexpected_callback;
|
||||
else
|
||||
} else {
|
||||
unexpected_callback = cb;
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
isc_error_setfatal(isc_errorcallback_t cb)
|
||||
{
|
||||
if (cb == NULL)
|
||||
if (cb == NULL) {
|
||||
fatal_callback = default_fatal_callback;
|
||||
else
|
||||
} else {
|
||||
fatal_callback = cb;
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
|
||||
Reference in New Issue
Block a user