From fef99a01817f618d500a550aab809fe49d7c61fc Mon Sep 17 00:00:00 2001 From: Olaf Barthel Date: Wed, 29 Sep 2004 16:54:54 +0000 Subject: [PATCH] - Reversed the 'unsigned long' -> 'ULONG' change in the constructor handling code. It is not necessary. git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@14742 87f5fb63-7c3d-0410-a384-fd976d0f7a62 --- library/crtbegin.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/crtbegin.c b/library/crtbegin.c index 5af302a..d24819b 100644 --- a/library/crtbegin.c +++ b/library/crtbegin.c @@ -1,5 +1,5 @@ /* - * $Id: crtbegin.c,v 1.2 2004-09-29 14:31:56 obarthel Exp $ + * $Id: crtbegin.c,v 1.3 2004-09-29 16:54:54 obarthel Exp $ * * :ts=4 * @@ -48,7 +48,7 @@ _do_ctors(void) static void _do_dtors(void) { - unsigned long i = (unsigned long)__DTOR_LIST__[0]; + ULONG i = (ULONG)__DTOR_LIST__[0]; void (**pFuncPtr)(void); if (i == ~0UL)