mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2025-02-16 03:14:56 +01:00
request and aborted need to be volatile
Signed-off-by: Sebastian Ramacher <sebastian+dev@ramacher.at>
This commit is contained in:
parent
f093046d9c
commit
3abf46a164
1 changed files with 2 additions and 2 deletions
4
render.c
4
render.c
|
@ -66,8 +66,8 @@ typedef struct private_s {
|
|||
typedef struct request_private_s {
|
||||
ZathuraRenderer* renderer;
|
||||
zathura_page_t* page;
|
||||
bool requested;
|
||||
bool aborted;
|
||||
volatile bool requested;
|
||||
volatile bool aborted;
|
||||
gint64 last_view_time;
|
||||
} request_private_t;
|
||||
|
||||
|
|
Loading…
Reference in a new issue