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);
 }
 
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to