summaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2010-12-13 08:10:29 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2010-12-13 08:10:29 +0000
commitd9f8b8949ecabc78350d230ab88efae4be7b3d2f (patch)
treeeff0ae722a6bb0aa089f6d0b9e5a6815fdb58a97 /content
parent650f88452732636bf1d030fc46b18027e7868e5c (diff)
downloadnetsurf-d9f8b8949ecabc78350d230ab88efae4be7b3d2f.tar.gz
netsurf-d9f8b8949ecabc78350d230ab88efae4be7b3d2f.tar.bz2
Fix assertion to compare, and not assign
svn path=/trunk/netsurf/; revision=11045
Diffstat (limited to 'content')
-rw-r--r--content/llcache.c2
1 files changed, 1 insertions, 1 deletions
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));