From 9b319bb413b66864fa0edd9f9716df123fca68b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Sat, 25 Aug 2012 01:18:15 +0000 Subject: [PATCH] Boost Jam cleanup - changed one remaining quoted assert.h include to use angle brackets instead of quotes, minor stylistic change. [SVN r80180] --- src/engine/lists.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/engine/lists.c b/src/engine/lists.c index 87ba34a6a..7e3b4a3f0 100644 --- a/src/engine/lists.c +++ b/src/engine/lists.c @@ -11,7 +11,8 @@ #include "jam.h" #include "lists.h" -#include "assert.h" +#include + struct freelist_node { struct freelist_node * next; }; @@ -239,7 +240,7 @@ void list_free( LIST * head ) LIST * list_pop_front( LIST * l ) { unsigned size = list_length( l ); - assert( size != 0 ); + assert( size ); --size; object_free( list_front( l ) );