diff options
| author | Fuwn <[email protected]> | 2024-01-22 07:40:51 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-22 07:40:51 -0800 |
| commit | 07c589277e99f8905d00a5d75e8cffb7393a3a38 (patch) | |
| tree | 4fded43bc4157c2a7fa5ea865f051ab839f6579e | |
| parent | feat(sei.c): reactive togglebar (diff) | |
| download | seiwm-07c589277e99f8905d00a5d75e8cffb7393a3a38.tar.xz seiwm-07c589277e99f8905d00a5d75e8cffb7393a3a38.zip | |
style(vanitygaps.c): add explicit types to pad
| -rw-r--r-- | vanitygaps.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vanitygaps.c b/vanitygaps.c index 296d6a1..21b4abf 100644 --- a/vanitygaps.c +++ b/vanitygaps.c @@ -27,8 +27,8 @@ static void setgaps(int oh, int ov, int ih, int iv); /* Settings */ static int enablegaps = 1; -static const vertpad_original = vertpad; -static const sidepad_original = sidepad; +static const int vertpad_original = vertpad; +static const int sidepad_original = sidepad; static void setgaps(int oh, int ov, int ih, int iv) { if (oh < 0) |