From d9f8b8949ecabc78350d230ab88efae4be7b3d2f Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Mon, 13 Dec 2010 08:10:29 +0000 Subject: Fix assertion to compare, and not assign svn path=/trunk/netsurf/; revision=11045 --- content/llcache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'content') diff --git a/content/llcache.c b/content/llcache.c index 484954be3..c3685a9d6 100644 --- a/content/llcache.c +++ b/content/llcache.c @@ -1183,7 +1183,7 @@ nserror llcache_object_remove_user(llcache_object *object, llcache_object_user *user) { assert(object->users != NULL); - assert(user->handle.object = object); + assert(user->handle.object == object); assert((user->next != NULL) || (user->prev != NULL) || (object->users == user)); -- cgit v1.2.3