summaryrefslogtreecommitdiffstats
path: root/scd
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2013-08-01 11:01:01 +0200
committerWerner Koch <wk@gnupg.org>2013-08-01 11:01:01 +0200
commit25b0357bf0a4861a751cfbc3e0335ae05c8b2b1b (patch)
treeb9812dadead3d3409911c03e1cfe28618634f68c /scd
parentcommon: Fix a build error when using adns. (diff)
downloadgnupg2-25b0357bf0a4861a751cfbc3e0335ae05c8b2b1b.tar.xz
gnupg2-25b0357bf0a4861a751cfbc3e0335ae05c8b2b1b.zip
scd: Fix a syntax error for Apple and Windows.
* scd/apdu.c (pcsc_dword_t) [W32]: Fix syntax error.
Diffstat (limited to 'scd')
-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