Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Network
KIO Extras
Commits
8f068e2d
Commit
8f068e2d
authored
Sep 01, 2020
by
Adriaan de Groot
💬
Browse files
Unify types
- size_t is not necessarily the same as uint64_t, use just one in declaration and definition.
parent
54066eb3
Changes
1
Hide whitespace changes
Inline
Side-by-side
sftp/kio_sftp.cpp
View file @
8f068e2d
...
...
@@ -2485,7 +2485,7 @@ void SFTPInternal::slave_status() {
q
->
slaveStatus
((
mConnected
?
mHost
:
QString
()),
mConnected
);
}
SFTPInternal
::
GetRequest
::
GetRequest
(
sftp_file
file
,
size
_t
size
,
ushort
maxPendingRequests
)
SFTPInternal
::
GetRequest
::
GetRequest
(
sftp_file
file
,
uint64
_t
size
,
ushort
maxPendingRequests
)
:
m_file
(
file
)
,
m_size
(
size
)
,
m_maxPendingRequests
(
maxPendingRequests
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment