aboutsummaryrefslogtreecommitdiffstats
path: root/pugl/detail
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-07-04 14:01:58 +0200
committerDavid Robillard <d@drobilla.net>2020-07-04 14:01:58 +0200
commit3452f489c71f64284c25c909602ec8b1e8d65b99 (patch)
treebfb77f691af82e42309da78e2cb2ced19312ba9d /pugl/detail
parentbe340fd084ba5679f02eb3a73fa9b5dda117bc43 (diff)
downloadpugl-3452f489c71f64284c25c909602ec8b1e8d65b99.tar.gz
pugl-3452f489c71f64284c25c909602ec8b1e8d65b99.tar.bz2
pugl-3452f489c71f64284c25c909602ec8b1e8d65b99.zip
X11: Fix internal timer ID type to match public interface
Diffstat (limited to 'pugl/detail')
-rw-r--r--pugl/detail/x11.h2
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 {