Code style: fix misaligned and trailing whitespaces

This commit is contained in:
Albert Safin
2020-02-21 02:06:48 +00:00
parent 854885ea9d
commit d3976fee8c
6 changed files with 10 additions and 10 deletions

View File

@ -246,8 +246,8 @@ int main(int argc, char *argv[]) {
sigaction(SIGINT, &action, NULL);
/* Since pthread_cond_wait() expects a mutex, we need to provide one.
* To not lock i3 (thats bad, mhkay?) we just define one outside of
* the shared memory. */
* To not lock i3 (thats bad, mhkay?) we just define one outside of
* the shared memory. */
pthread_mutex_t dummy_mutex = PTHREAD_MUTEX_INITIALIZER;
pthread_mutex_lock(&dummy_mutex);
while (!interrupted) {