[buddy] * src/pairs.c (bdd_pairalloc): Fix prototype.

This commit is contained in:
Alexandre Duret-Lutz 2011-04-30 13:22:27 +02:00
parent 21a28ca822
commit 24054605da
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2011-04-30 Alexandre Duret-Lutz <adl@lrde.epita.fr>
* src/pairs.c (bdd_pairalloc): Fix prototype.
2011-04-10 Alexandre Duret-Lutz <adl@lrde.epita.fr>
Fix some warnings reported by gcc.

View file

@ -114,7 +114,7 @@ void bdd_pairs_vardown(int level)
}
static bddPair *bdd_pairalloc()
static bddPair *bdd_pairalloc(void)
{
bddPair *p;
if ((p=(bddPair*)malloc(sizeof(bddPair))) == NULL)