aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2013-04-25 11:00:16 +0000
committerWerner Koch <[email protected]>2014-03-07 07:57:09 +0000
commit4ad123d6fe341da7768e43360375e17fa89e8e0d (patch)
tree5f62c884c4cc29568c66bc7756519484f6647c72
parentIgnore obsolete option --disable-keypad. (diff)
downloadgnupg-4ad123d6fe341da7768e43360375e17fa89e8e0d.tar.gz
gnupg-4ad123d6fe341da7768e43360375e17fa89e8e0d.zip
Fix syntax error for building on APPLE.
* scd/pcsc-wrapper.c [__APPLE__]: Fix syntax error. -- For W32 and probably for Cygwin we don't need the wrapper, thus the problems does not exhibit itself. (cherry picked from commit 8ddf604659b93754ffa6dea295678a8adc293f90)
-rw-r--r--scd/pcsc-wrapper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/scd/pcsc-wrapper.c b/scd/pcsc-wrapper.c
index f39a5dd75..e20e111a9 100644
--- a/scd/pcsc-wrapper.c
+++ b/scd/pcsc-wrapper.c
@@ -66,7 +66,7 @@
static int verbose;
#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