Skip to content

Commit

Permalink
thread.c.v: thread -> thrd
Browse files Browse the repository at this point in the history
  • Loading branch information
Delta456 authored and larpon committed Aug 26, 2023
1 parent 1f3d225 commit ffabb58
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions thread.c.v
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ fn C.SDL_GetThreadName(thread &C.SDL_Thread) &char
// specified thread, or NULL if it doesn't have a name. This is internal
// memory, not to be free()'d by the caller, and remains valid until the
// specified thread is cleaned up by SDL_WaitThread().
pub fn get_thread_name(thread &Thread) &char {
return C.SDL_GetThreadName(thread)
pub fn get_thread_name(thrd &Thread) &char {
return C.SDL_GetThreadName(thrd)
}

fn C.SDL_ThreadID() C.SDL_threadID
Expand Down

0 comments on commit ffabb58

Please sign in to comment.