mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Avoid compiler warning
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@23025 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
a4a7fb8f81
commit
8398e8a74c
1 changed files with 1 additions and 1 deletions
|
@ -527,7 +527,7 @@ default_lookup (NSZone *zone, void *ptr)
|
|||
static struct NSZoneStats
|
||||
default_stats (NSZone *zone)
|
||||
{
|
||||
struct NSZoneStats dummy;
|
||||
struct NSZoneStats dummy = {0,0,0,0,0};
|
||||
|
||||
/* We can't obtain statistics from the memory managed by objc_malloc(). */
|
||||
[NSException raise: NSGenericException
|
||||
|
|
Loading…
Reference in a new issue