scp: Cast return value from uint64_t to size_t.
Этот коммит содержится в:
родитель
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.
|
||||||
|
Загрузка…
Ссылка в новой задаче
Block a user