diff options
author | Craig Rodrigues <rodrigc@gcc.gnu.org> | 2001-11-19 00:24:52 +0000 |
---|---|---|
committer | Craig Rodrigues <rodrigc@gcc.gnu.org> | 2001-11-19 00:24:52 +0000 |
commit | 392447923f91ba4ae478cf7e131eee21250e7f49 (patch) | |
tree | e5fc14c5df9380787eb5bba2dfa97fffd6d19492 /gcc/gthr-win32.h | |
parent | 8aeb42d06b31988d1cae8c5c8200fc2650d3e16a (diff) | |
download | gcc-392447923f91ba4ae478cf7e131eee21250e7f49.zip gcc-392447923f91ba4ae478cf7e131eee21250e7f49.tar.gz gcc-392447923f91ba4ae478cf7e131eee21250e7f49.tar.bz2 |
re PR bootstrap/4448 (make bootstrap failed: gthr-win32.h erroneous)
2001-11-18 Craig Rodrigues <rodrigc@gcc.gnu.org>
PR c/4448
* gthr-win32.h: (__gthread_objc_thread_exit): Fix variable
name __objc_thread_exit_status so that it matches the
variable defined in objc/thr.h.
From-SVN: r47157
Diffstat (limited to 'gcc/gthr-win32.h')
-rw-r--r-- | gcc/gthr-win32.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gthr-win32.h b/gcc/gthr-win32.h index 97a50da..f432194 100644 --- a/gcc/gthr-win32.h +++ b/gcc/gthr-win32.h @@ -181,7 +181,7 @@ int __gthread_objc_thread_exit(void) { /* exit the thread */ - ExitThread(__gthread_objc_thread_exit_status); + ExitThread(__objc_thread_exit_status); /* Failed if we reached here */ return -1; |