Commit c6d14d26 authored by Geoff Thorpe's avatar Geoff Thorpe
Browse files

Squash a VC++ warning.

parent 832e09cd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -382,7 +382,7 @@ static void kc_should_retry_util(kc_exist_state *s, time_t retry)
	if((*s == kc_error) || (*s == kc_absent))
		{
		time_t now = time(NULL);
		if((now - retry) >= keyclient_retry_period)
		if((now - retry) >= (time_t)keyclient_retry_period)
			*s = kc_discover;
		}
	}