diff options
author | Ryan Dwyer <RyanDwyer@users.noreply.github.com> | 2018-11-26 21:25:45 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-26 21:25:45 +1000 |
commit | af7a97623bf147205abffb7e17d55aca980cbaf1 (patch) | |
tree | 033e8758cc4bfc23326fa3cdab86540307241d1c /sway/commands/workspace.c | |
parent | 0ebb4107bc953aeaf07acd2258185879cf13f053 (diff) | |
parent | 3a310f92ab619cf8afcb99486bc91b49c7989791 (diff) |
Merge pull request #3185 from emersion/remove-xopen-source
Replace _XOPEN_SOURCE with _POSIX_C_SOURCE
Diffstat (limited to 'sway/commands/workspace.c')
-rw-r--r-- | sway/commands/workspace.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/commands/workspace.c b/sway/commands/workspace.c index 92118ecf..7d32e65b 100644 --- a/sway/commands/workspace.c +++ b/sway/commands/workspace.c @@ -1,4 +1,4 @@ -#define _XOPEN_SOURCE 500 +#define _POSIX_C_SOURCE 200809L #include <ctype.h> #include <limits.h> #include <string.h> @@ -38,7 +38,7 @@ void free_workspace_config(struct workspace_config *wsc) { } static void prevent_invalid_outer_gaps(struct workspace_config *wsc) { - if (wsc->gaps_outer.top != INT_MIN && + if (wsc->gaps_outer.top != INT_MIN && wsc->gaps_outer.top < -wsc->gaps_inner) { wsc->gaps_outer.top = -wsc->gaps_inner; } |