diff options
author | Werner Koch <wk@gnupg.org> | 2024-09-20 14:05:56 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2024-09-20 14:07:04 +0200 |
commit | 6ed2857d5406d8f1dcca9ec83ee24e5ececc44f9 (patch) | |
tree | b9a365a0c969544cc1410a872617f364f0515578 /scd/app.c | |
parent | scd: Fix DEVINFO, allowing no clients which watch the change. (diff) | |
download | gnupg2-6ed2857d5406d8f1dcca9ec83ee24e5ececc44f9.tar.xz gnupg2-6ed2857d5406d8f1dcca9ec83ee24e5ececc44f9.zip |
w32: Fix last commit to build on Windows.
* scd/app.c (struct mrsw_lock): Move notify_watchers out of the system
specific condition.
--
Fixes-commit: c98385d311ca37e1863d0e42ebf7bbc6b68efe35
Diffstat (limited to '')
-rw-r--r-- | scd/app.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -59,8 +59,8 @@ struct mrsw_lock HANDLE the_event; #else int notify_pipe[2]; - int notify_watchers; #endif + int notify_watchers; /* Used only for W32 but let's define it always. */ }; /* MRSW lock to protect the list of cards. |