diff options
author | Drew DeVault <[email protected]> | 2015-09-18 07:27:35 -0400 |
---|---|---|
committer | Drew DeVault <[email protected]> | 2015-09-18 07:27:35 -0400 |
commit | 318e1be240574e316094e5ea73d32e9f9a1f7c04 (patch) | |
tree | b93c54cba11fd92adb56dce49261d9adb88991fd /sway/container.c | |
parent | 8e25ce4e5763c74864587b0a78217eb20c299afe (diff) |
Fix warnings introduced by prior commit
Diffstat (limited to 'sway/container.c')
-rw-r--r-- | sway/container.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sway/container.c b/sway/container.c index ef0e6c55..85b169a1 100644 --- a/sway/container.c +++ b/sway/container.c @@ -1,7 +1,9 @@ #include <stdlib.h> #include <stdbool.h> #include <strings.h> +#include <string.h> #include "config.h" +#include "stringop.h" #include "container.h" #include "workspace.h" #include "focus.h" |