diff options
author | David Robillard <d@drobilla.net> | 2020-07-04 14:01:58 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-07-04 14:01:58 +0200 |
commit | 3452f489c71f64284c25c909602ec8b1e8d65b99 (patch) | |
tree | bfb77f691af82e42309da78e2cb2ced19312ba9d /pugl | |
parent | be340fd084ba5679f02eb3a73fa9b5dda117bc43 (diff) | |
download | pugl-3452f489c71f64284c25c909602ec8b1e8d65b99.tar.gz pugl-3452f489c71f64284c25c909602ec8b1e8d65b99.tar.bz2 pugl-3452f489c71f64284c25c909602ec8b1e8d65b99.zip |
X11: Fix internal timer ID type to match public interface
Diffstat (limited to 'pugl')
-rw-r--r-- | pugl/detail/x11.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pugl/detail/x11.h b/pugl/detail/x11.h index 164a57e..47d9225 100644 --- a/pugl/detail/x11.h +++ b/pugl/detail/x11.h @@ -44,7 +44,7 @@ typedef struct { typedef struct { XID alarm; PuglView* view; - uint64_t id; + uintptr_t id; } PuglTimer; struct PuglWorldInternalsImpl { |