svn commit: r254835 - head/sys/dev/drm2
Jean-Sebastien Pedron
dumbbell at FreeBSD.org
Sun Aug 25 09:53:00 UTC 2013
Author: dumbbell
Date: Sun Aug 25 09:53:00 2013
New Revision: 254835
URL: http://svnweb.freebsd.org/changeset/base/254835
Log:
drm: Fix typo in KASSERT message: s/Dandling/Dangling/
Modified:
head/sys/dev/drm2/drm_gem.c
Modified: head/sys/dev/drm2/drm_gem.c
==============================================================================
--- head/sys/dev/drm2/drm_gem.c Sun Aug 25 09:49:00 2013 (r254834)
+++ head/sys/dev/drm2/drm_gem.c Sun Aug 25 09:53:00 2013 (r254835)
@@ -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);
}
More information about the svn-src-all
mailing list