diff options
| author | dannysmith <dannysmith@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-08-21 07:49:17 +0000 |
|---|---|---|
| committer | dannysmith <dannysmith@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-08-21 07:49:17 +0000 |
| commit | cdfdca4009ce9e2f18e2aabcf49507f9d15fc57a (patch) | |
| tree | 56c4ab9651a5cf96b5efbf2224a42062b3d3a32d | |
| parent | 329f67aeceef041840cf7d3c3c5a715ccdae6e81 (diff) | |
| download | ppe42-gcc-cdfdca4009ce9e2f18e2aabcf49507f9d15fc57a.tar.gz ppe42-gcc-cdfdca4009ce9e2f18e2aabcf49507f9d15fc57a.zip | |
misc.c (GC_init): Replace lhs cast with rhs cast.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86356 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | boehm-gc/ChangeLog | 4 | ||||
| -rw-r--r-- | boehm-gc/misc.c | 5 |
2 files changed, 7 insertions, 2 deletions
diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog index 41276473a8b..70de84e849a 100644 --- a/boehm-gc/ChangeLog +++ b/boehm-gc/ChangeLog @@ -1,3 +1,7 @@ +2004-08-21 Danny Smith <dannysmith@users.sourceforge.net> + + misc.c (GC_init): Replace lhs cast with rhs cast. + 2004-08-16 Bryce McKinlay <mckinlay@redhat.com> * specific.c: Check GC_LINUX_THREADS before including diff --git a/boehm-gc/misc.c b/boehm-gc/misc.c index 5b10feeb961..2b69a00055a 100644 --- a/boehm-gc/misc.c +++ b/boehm-gc/misc.c @@ -479,8 +479,9 @@ void GC_init() BOOL (WINAPI *pfn) (LPCRITICAL_SECTION, DWORD) = NULL; HMODULE hK32 = GetModuleHandle("kernel32.dll"); if (hK32) - (FARPROC) pfn = GetProcAddress(hK32, - "InitializeCriticalSectionAndSpinCount"); + pfn = (BOOL (WINAPI *) (LPCRITICAL_SECTION, DWORD)) + GetProcAddress (hK32, + "InitializeCriticalSectionAndSpinCount"); if (pfn) pfn(&GC_allocate_ml, 4000); else |

