mirror of
https://github.com/godotengine/godot.git
synced 2025-10-31 21:51:22 +00:00
Fix some issues found by cppcheck.
This commit is contained in:
parent
72407a9cfb
commit
f851c4aa33
163 changed files with 776 additions and 767 deletions
|
|
@ -164,7 +164,7 @@ Error HTTPRequest::request_raw(const String &p_url, const Vector<String> &p_cust
|
|||
}
|
||||
|
||||
void HTTPRequest::_thread_func(void *p_userdata) {
|
||||
HTTPRequest *hr = (HTTPRequest *)p_userdata;
|
||||
HTTPRequest *hr = static_cast<HTTPRequest *>(p_userdata);
|
||||
|
||||
Error err = hr->_request();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue