svn commit: r261661 - stable/9/sys/dev/drm2

Jean-Sebastien Pedron dumbbell at FreeBSD.org
Sun Feb 9 15:34:38 UTC 2014


Author: dumbbell
Date: Sun Feb  9 15:34:38 2014
New Revision: 261661
URL: http://svnweb.freebsd.org/changeset/base/261661

Log:
  MFC r254835:
  
  drm: Fix typo in KASSERT message: s/Dandling/Dangling/

Modified:
  stable/9/sys/dev/drm2/drm_gem.c
Directory Properties:
  stable/9/sys/   (props changed)
  stable/9/sys/dev/   (props changed)

Modified: stable/9/sys/dev/drm2/drm_gem.c
==============================================================================
--- stable/9/sys/dev/drm2/drm_gem.c	Sun Feb  9 15:27:26 2014	(r261660)
+++ stable/9/sys/dev/drm2/drm_gem.c	Sun Feb  9 15:34:38 2014	(r261661)
@@ -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-stable-9 mailing list