diff options
author | Guenter Knauf <lists@gknw.net> | 2012-04-22 21:19:36 +0200 |
---|---|---|
committer | Guenter Knauf <lists@gknw.net> | 2012-04-22 21:19:36 +0200 |
commit | 683bfa60ad0b52505947e59b03515e5f44378523 (patch) | |
tree | f4513e8eb6864742d53ba6b1e21110ecdf180adc /lib | |
parent | 77172a242fc0c820f97eae39d0e3e0f265222fe6 (diff) |
Fixed 'Trailing whitespace' found by checksrc.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/curl_sspi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/curl_sspi.c b/lib/curl_sspi.c index b9a343b6c..e266c79d1 100644 --- a/lib/curl_sspi.c +++ b/lib/curl_sspi.c @@ -117,7 +117,7 @@ CURLcode Curl_sspi_version(int *major, int *minor, int *build, int *special) path = malloc(MAX_PATH); if(!path) return CURLE_OUT_OF_MEMORY; - + if(GetModuleFileName(s_hSecDll, path, MAX_PATH)) { size = GetFileVersionInfoSize(path, &handle); if(size) { @@ -143,7 +143,7 @@ CURLcode Curl_sspi_version(int *major, int *minor, int *build, int *special) if(!result) { if(major) *major = (version_info->dwProductVersionMS >> 16) & 0xffff; - + if(minor) *minor = (version_info->dwProductVersionMS >> 0) & 0xffff; |