1
1

scp: Cast return value from uint64_t to size_t.

Этот коммит содержится в:
Andreas Schneider 2013-07-22 12:23:01 +02:00
родитель da1eaea51a
Коммит 229ef082c1

Просмотреть файл

@ -751,7 +751,7 @@ int ssh_scp_request_get_permissions(ssh_scp scp){
size_t ssh_scp_request_get_size(ssh_scp scp){ size_t ssh_scp_request_get_size(ssh_scp scp){
if(scp==NULL) if(scp==NULL)
return 0; return 0;
return scp->filelen; return (size_t)scp->filelen;
} }
/** @brief Get the size of the file being pushed from the other party. /** @brief Get the size of the file being pushed from the other party.