Skip to content

Commit

Permalink
rtree: Replace undeclared TRUE/FALSE with 1/0
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Wilson committed May 16, 2010
1 parent 465ceb3 commit c3df7e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cairo-rtree-private.h
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ _cairo_rtree_evict_random (cairo_rtree_t *rtree,
static inline void *
_cairo_rtree_pin (cairo_rtree_t *rtree, cairo_rtree_node_t *node)
{
if (node->pinned == FALSE) {
if (! node->pinned) {
cairo_list_move (&node->link, &rtree->pinned);
node->pinned = TRUE;
node->pinned = 0;
}

return node;
Expand Down

0 comments on commit c3df7e6

Please sign in to comment.