diff options
| author | Rémi Verschelde | 2017-08-07 14:59:39 +0200 |
|---|---|---|
| committer | GitHub | 2017-08-07 14:59:39 +0200 |
| commit | 3121b3a4f4c01744184e952d79f9a56e01bdba41 (patch) | |
| tree | 689fe41108d8d35c2aaace270c265085fac310d7 /drivers/unix/os_unix.cpp | |
| parent | b0dfec77c27fb413eeaf3b9b2fdcb3777526c28f (diff) | |
| parent | 5ae78fdf6adf4b3ab417d2b6fd5a41bfa6d5cfe2 (diff) | |
| download | godot-3121b3a4f4c01744184e952d79f9a56e01bdba41.tar.gz godot-3121b3a4f4c01744184e952d79f9a56e01bdba41.tar.zst godot-3121b3a4f4c01744184e952d79f9a56e01bdba41.zip | |
Merge pull request #10141 from ISylvox/lower_case_godot_api
Makes all Godot API's Methods lower_case
Diffstat (limited to 'drivers/unix/os_unix.cpp')
| -rw-r--r-- | drivers/unix/os_unix.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/unix/os_unix.cpp b/drivers/unix/os_unix.cpp index e42459088..0f4e8f757 100644 --- a/drivers/unix/os_unix.cpp +++ b/drivers/unix/os_unix.cpp @@ -415,7 +415,7 @@ Error OS_Unix::kill(const ProcessID &p_pid) { return ret ? ERR_INVALID_PARAMETER : OK; } -int OS_Unix::get_process_ID() const { +int OS_Unix::get_process_id() const { return getpid(); }; |
