drm: Fix typo in KASSERT message: s/Dandling/Dangling/

This commit is contained in:
dumbbell 2013-08-25 09:53:00 +00:00
parent 10b033d327
commit 1102975996

View File

@ -163,7 +163,7 @@ void
drm_gem_object_reference(struct drm_gem_object *obj)
{
KASSERT(obj->refcount > 0, ("Dandling obj %p", obj));
KASSERT(obj->refcount > 0, ("Dangling obj %p", obj));
refcount_acquire(&obj->refcount);
}