scd: Fix a syntax error for Apple and Windows.

* scd/apdu.c (pcsc_dword_t) [W32]: Fix syntax error.
This commit is contained in:
Werner Koch 2013-08-01 11:01:01 +02:00
parent ffa7472db5
commit 25b0357bf0
1 changed files with 1 additions and 1 deletions

View File

@ -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