Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorあく <alleteam@gmail.com>2021-07-01 03:45:20 +0300
committerGitHub <noreply@github.com>2021-07-01 03:45:20 +0300
commit8211432685a051f26ec0c979c79dde1fdc5bdf0e (patch)
tree3364df2499d1153884748ffccfc156b747a10ad3 /applications/tests
parenta0e1e42f2d6faa3120e54dac238e1ad9d9adf69b (diff)
Clang formatter: add indent to wrapped functions names. (#548)
Diffstat (limited to 'applications/tests')
-rw-r--r--applications/tests/irda_decoder/irda_decoder_test.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/applications/tests/irda_decoder/irda_decoder_test.c b/applications/tests/irda_decoder/irda_decoder_test.c
index f3ba40b7..ff5ca5db 100644
--- a/applications/tests/irda_decoder/irda_decoder_test.c
+++ b/applications/tests/irda_decoder/irda_decoder_test.c
@@ -18,8 +18,9 @@ static void test_teardown(void) {
irda_free_decoder(decoder);
}
-static void
-compare_message_results(const IrdaMessage* message_decoded, const IrdaMessage* message_expected) {
+static void compare_message_results(
+ const IrdaMessage* message_decoded,
+ const IrdaMessage* message_expected) {
mu_check(message_decoded->protocol == message_expected->protocol);
mu_check(message_decoded->command == message_expected->command);
mu_check(message_decoded->address == message_expected->address);