commit | 5c3e457b16e10eab18bfd34a8558fb8c398470dc | [log] [tgz] |
---|---|---|
author | Jesper Skov <jskov@cygnus.co.uk> | Sun Nov 01 19:27:22 1998 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Sun Nov 01 19:27:22 1998 +0000 |
tree | 29b33b4c6215f77d5ed296007759e385c3d1ff9f | |
parent | d0421889c8be0954393b542daea925ca0182c103 [diff] [blame] |
egcs 'ambiguous else' warnings fixes.
diff --git a/memory/heap.c b/memory/heap.c index 5a0f7ad..b73d1d0 100644 --- a/memory/heap.c +++ b/memory/heap.c
@@ -1435,10 +1435,12 @@ /* Determine new heap size */ if ( segment ) + { if ( (segSize = GetSelectorLimit( segment )) == 0 ) return 0; else segSize++; + } if ( heapSize == -1L ) heapSize = 1024L*1024L; /* FIXME */