diff options
author | Tobias Brunner <tobias@strongswan.org> | 2009-05-06 07:41:33 -0400 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2009-05-06 09:11:19 -0400 |
commit | e382d96f6229052d33f8fe0d648e0f7b2da4a5f4 (patch) | |
tree | 84cb1a156635a055cb6f81afb324ecf1ccd86d6c /src/libstrongswan/plugins/openssl/openssl_plugin.c | |
parent | a9f56adb59323e889e2e8bcf53a3af997e01ecfc (diff) | |
download | strongswan-e382d96f6229052d33f8fe0d648e0f7b2da4a5f4.tar.bz2 strongswan-e382d96f6229052d33f8fe0d648e0f7b2da4a5f4.tar.xz |
compiler warning fixed
Diffstat (limited to 'src/libstrongswan/plugins/openssl/openssl_plugin.c')
-rw-r--r-- | src/libstrongswan/plugins/openssl/openssl_plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstrongswan/plugins/openssl/openssl_plugin.c b/src/libstrongswan/plugins/openssl/openssl_plugin.c index 3522923ab..a90dff7f1 100644 --- a/src/libstrongswan/plugins/openssl/openssl_plugin.c +++ b/src/libstrongswan/plugins/openssl/openssl_plugin.c @@ -119,7 +119,7 @@ static void destroy_function(struct CRYPTO_dynlock_value *lock, */ static unsigned long id_function(void) { - return pthread_self(); + return (unsigned long)pthread_self(); } /** |