Skip to content

Commit 2a24f9b

Browse files
restyled-commitsadigie
authored andcommitted
Restyled by clang-format
1 parent 03958bd commit 2a24f9b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/platform/linux/AppMain.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -722,9 +722,9 @@ void ChipLinuxAppMainLoop(AppMainLoopImplementation * impl)
722722
signal(SIGTERM, StopSignalHandler);
723723
// NOLINTEND(bugprone-signal-handler)
724724
#else
725-
struct sigaction sa = {};
726-
sa.sa_handler = StopSignalHandler;
727-
sa.sa_flags = SA_RESETHAND;
725+
struct sigaction sa = {};
726+
sa.sa_handler = StopSignalHandler;
727+
sa.sa_flags = SA_RESETHAND;
728728
sigaction(SIGINT, &sa, nullptr);
729729
sigaction(SIGTERM, &sa, nullptr);
730730
#endif

0 commit comments

Comments
 (0)