style: fix formatting and include order in source files
This commit is contained in:
committed by
Loic Coenen (aider)
parent
72839a9e5f
commit
f7f18f9fa7
@@ -3,8 +3,8 @@
|
||||
#include <jack/jack.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
#include <time.h>
|
||||
#include <unistd.h>
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
(void)argc;
|
||||
@@ -43,7 +43,10 @@ int main(int argc, char *argv[]) {
|
||||
|
||||
while (1) {
|
||||
looper_process_commands(client);
|
||||
{ struct timespec ts = { .tv_sec = 0, .tv_nsec = 50000000 }; nanosleep(&ts, NULL); } /* check commands every 50 ms */
|
||||
{
|
||||
struct timespec ts = {.tv_sec = 0, .tv_nsec = 50000000};
|
||||
nanosleep(&ts, NULL);
|
||||
} /* check commands every 50 ms */
|
||||
}
|
||||
|
||||
jack_client_close(client);
|
||||
|
||||
Reference in New Issue
Block a user