botor: Remove a couple of inlines to cleanup -Winline

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
This commit is contained in:
Chris Wilson 2011-10-10 15:22:37 +01:00
parent 34f507a919
commit 3d51ec8a79
2 changed files with 2 additions and 2 deletions

View file

@ -1072,7 +1072,7 @@ coverage_reset (struct coverage *cells)
coverage_rewind (cells);
}
inline static struct cell *
static struct cell *
coverage_alloc (sweep_line_t *sweep_line,
struct cell *tail,
int x)

View file

@ -111,7 +111,7 @@ _cairo_freepool_alloc (cairo_freepool_t *freepool)
cairo_freelist_node_t *node;
node = freepool->first_free_node;
if (unlikely (node == NULL))
if (node == NULL)
return _cairo_freepool_alloc_from_pool (freepool);
VG (VALGRIND_MAKE_MEM_DEFINED (node, sizeof (node->next)));