mirror of
https://github.com/curl/curl.git
synced 2026-08-25 23:33:37 +03:00
docs: fix typo stuct -> struct
This commit is contained in:
parent
2747aec348
commit
274f9cac96
2 changed files with 2 additions and 2 deletions
|
|
@ -39,7 +39,7 @@ HTTP, FTP, SFTP
|
|||
.nf
|
||||
static int seek_cb(void *userp, curl_off_t offset, int origin)
|
||||
{
|
||||
struct data *d = (stuct data *)userp;
|
||||
struct data *d = (struct data *)userp;
|
||||
lseek(our_fd, offset, origin);
|
||||
return CURL_SEEKFUNC_OK;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@ HTTP, FTP, SFTP
|
|||
.nf
|
||||
static int seek_cb(void *userp, curl_off_t offset, int origin)
|
||||
{
|
||||
struct data *d = (stuct data *)userp;
|
||||
struct data *d = (struct data *)userp;
|
||||
lseek(our_fd, offset, origin);
|
||||
return CURL_SEEKFUNC_OK;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue