Browse Source

clang-format-3.5

Not sure why travis didn’t warn about this on the PR. The only reference
to the PR I can find is https://travis-ci.org/i3/i3lock/builds/130470377
master
Michael Stapelberg 9 years ago
parent
commit
ce1c5cecc0
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      i3lock.c

+ 4
- 4
i3lock.c View File

@ -636,10 +636,10 @@ static void maybe_close_sleep_lock_fd(void) {
const char *sleep_lock_fd = getenv("XSS_SLEEP_LOCK_FD");
char *endptr;
if (sleep_lock_fd && *sleep_lock_fd != 0) {
long int fd = strtol(sleep_lock_fd, &endptr, 10);
if (*endptr == 0) {
close(fd);
}
long int fd = strtol(sleep_lock_fd, &endptr, 10);
if (*endptr == 0) {
close(fd);
}
}
}


Loading…
Cancel
Save