Meta+Userland: Make clang-format-10 clean

This commit is contained in:
Ben Wiederhake 2020-09-18 09:49:51 +02:00 committed by Andreas Kling
commit a2feef17bf
Notes: sideshowbarker 2024-07-19 02:14:24 +09:00
7 changed files with 27 additions and 31 deletions

View file

@ -27,15 +27,11 @@
#include <stdio.h>
#include <unistd.h>
int main(int, char**)
{
if (reboot() < 0){
if (reboot() < 0) {
perror("reboot");
return 1;
}
return 0;
}