aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2013-08-01 09:01:01 +0000
committerWerner Koch <[email protected]>2013-08-01 09:01:01 +0000
commit25b0357bf0a4861a751cfbc3e0335ae05c8b2b1b (patch)
treeb9812dadead3d3409911c03e1cfe28618634f68c
parentcommon: Fix a build error when using adns. (diff)
downloadgnupg-25b0357bf0a4861a751cfbc3e0335ae05c8b2b1b.tar.gz
gnupg-25b0357bf0a4861a751cfbc3e0335ae05c8b2b1b.zip
scd: Fix a syntax error for Apple and Windows.
* scd/apdu.c (pcsc_dword_t) [W32]: Fix syntax error.
Diffstat (limited to '')
-rw-r--r--scd/apdu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/scd/apdu.c b/scd/apdu.c
index 92c9864a0..133058d59 100644
--- a/scd/apdu.c
+++ b/scd/apdu.c
@@ -83,7 +83,7 @@
#endif
#if defined(__APPLE__) || defined(_WIN32) || defined(__CYGWIN__)
-typedef unsinged int pcsc_dword_t;
+typedef unsigned int pcsc_dword_t;
#else
typedef unsigned long pcsc_dword_t;
#endif