Date: Sun, 25 Aug 2013 09:53:00 +0000 (UTC) From: Jean-Sebastien Pedron <dumbbell@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r254835 - head/sys/dev/drm2 Message-ID: <201308250953.r7P9r0lN085757@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201308250953.r7P9r0lN085757>