mirror of
https://github.com/git/git.git
synced 2026-04-02 13:00:08 +02:00
Fix warnings in nedmalloc when compiling with GCC 4.4.0
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
This commit is contained in:
@@ -1270,7 +1270,9 @@ int mspace_mallopt(int, int);
|
||||
/*------------------------------ internal #includes ---------------------- */
|
||||
|
||||
#ifdef WIN32
|
||||
#ifndef __GNUC__
|
||||
#pragma warning( disable : 4146 ) /* no "unsigned" warnings */
|
||||
#endif
|
||||
#endif /* WIN32 */
|
||||
|
||||
#include <stdio.h> /* for printing in malloc_stats */
|
||||
@@ -2541,7 +2543,7 @@ struct malloc_params {
|
||||
static struct malloc_params mparams;
|
||||
|
||||
/* Ensure mparams initialized */
|
||||
#define ensure_initialization() (mparams.magic != 0 || init_mparams())
|
||||
#define ensure_initialization() if (mparams.magic == 0) init_mparams()
|
||||
|
||||
#if !ONLY_MSPACES
|
||||
|
||||
|
||||
@@ -34,7 +34,7 @@ DEALINGS IN THE SOFTWARE.
|
||||
/*#define FULLSANITYCHECKS*/
|
||||
|
||||
#include "nedmalloc.h"
|
||||
#if defined(WIN32) && !defined(__MINGW32__)
|
||||
#if defined(WIN32)
|
||||
#include <malloc.h>
|
||||
#endif
|
||||
#define MSPACES 1
|
||||
|
||||
Reference in New Issue
Block a user