diff options
author | 2012-09-15 21:47:30 +0000 | |
---|---|---|
committer | 2012-09-15 21:47:30 +0000 | |
commit | ab97dc30efdd5cc1abf8c65b8ce29af364219167 (patch) | |
tree | 5ab46b3c21f6e0e4173a79a4151e019b3f2dc17e /src/osd/sdl/sdlwork.c | |
parent | d1da89cc7817315f05269205a3f56d36ebba170b (diff) |
First pass at modernizing struct definitions.
Diffstat (limited to 'src/osd/sdl/sdlwork.c')
-rw-r--r-- | src/osd/sdl/sdlwork.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/osd/sdl/sdlwork.c b/src/osd/sdl/sdlwork.c index 74cb625d755..df9aae7efbe 100644 --- a/src/osd/sdl/sdlwork.c +++ b/src/osd/sdl/sdlwork.c @@ -71,8 +71,7 @@ int osd_num_processors = 0; // TYPE DEFINITIONS //============================================================ -typedef struct _work_thread_info work_thread_info; -struct _work_thread_info +struct work_thread_info { osd_work_queue * queue; // pointer back to the queue osd_thread * handle; // handle to the thread |