1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

Fixed 'Trailing whitespace' found by checksrc.

This commit is contained in:
Guenter Knauf 2012-04-22 21:19:36 +02:00
parent 77172a242f
commit 683bfa60ad

View File

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