mirror of
https://github.com/curl/curl.git
synced 2026-04-19 23:41:13 +03:00
fix compiler warning: conversion to 'size_t' from 'curl_off_t' may alter its value
This commit is contained in:
parent
f2f45339dc
commit
d006efebc0
1 changed files with 1 additions and 1 deletions
|
|
@ -455,7 +455,7 @@ static int sshkeycallback(CURL *easy,
|
|||
#ifdef HAVE_LIBSSH2_SFTP_SEEK64
|
||||
#define SFTP_SEEK(x,y) libssh2_sftp_seek64(x, (libssh2_uint64_t)y)
|
||||
#else
|
||||
#define SFTP_SEEK(x,y) libssh2_sftp_seek(x, y)
|
||||
#define SFTP_SEEK(x,y) libssh2_sftp_seek(x, (size_t)y)
|
||||
#endif
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue