diff options
author | emersion <contact@emersion.fr> | 2018-06-05 23:59:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-05 23:59:52 +0100 |
commit | cac400a40bf032d0ba29f28d91a633f9938451d5 (patch) | |
tree | a9c4c3b4ea4ae3e9dc70ad21cbea057a639d5160 /sway | |
parent | 0f715470328cbb5be77f95c7e209ce6bace2ef19 (diff) | |
parent | d6d292897fe589c8734ec7f7304fbd5f1a05c059 (diff) |
Merge pull request #2107 from tobiasblass/remove_suspicious_return
Remove suspicious unconditional return
Diffstat (limited to 'sway')
-rw-r--r-- | sway/main.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sway/main.c b/sway/main.c index e03b8e3a..a7e808ad 100644 --- a/sway/main.c +++ b/sway/main.c @@ -160,7 +160,6 @@ static void log_distro() { } static void log_kernel() { - return; FILE *f = popen("uname -a", "r"); if (!f) { wlr_log(L_INFO, "Unable to determine kernel version"); |