diff options
author | Daniel Friesel <derf@finalrewind.org> | 2021-01-09 12:42:43 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2021-01-09 12:42:43 +0100 |
commit | b5e94bec369329891364f38a8468e9d0ed4b6b1e (patch) | |
tree | 8f8dbf03824533aef33908bd5e8a1b80263e09bb /src/options.h | |
parent | 4956bba42e65739a28e14d25cd05ee4601f67ca1 (diff) |
X11 uses unsigned long int for window IDs (see X11/X.h)
Diffstat (limited to 'src/options.h')
-rw-r--r-- | src/options.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/options.h b/src/options.h index 5270f38..7ca699b 100644 --- a/src/options.h +++ b/src/options.h @@ -130,7 +130,7 @@ struct __fehoptions { unsigned char adjust_reload; int xinerama_index; char *x11_class; - unsigned int *x11_windowid; + unsigned long int x11_windowid; /* signed in case someone wants to invert scrolling real quick */ int scroll_step; |