Date: Fri, 30 Dec 2011 02:07:50 +0000 (UTC) From: Dimitry Andric <dim@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r228979 - head/sys/dev/drm Message-ID: <201112300207.pBU27oFc090777@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: dim Date: Fri Dec 30 02:07:50 2011 New Revision: 228979 URL: http://svn.freebsd.org/changeset/base/228979 Log: In sys/dev/drm/radeon_state.c, use the correct printf length modifiers for ints. MFC after: 1 week Modified: head/sys/dev/drm/radeon_state.c Modified: head/sys/dev/drm/radeon_state.c ============================================================================== --- head/sys/dev/drm/radeon_state.c Fri Dec 30 01:54:45 2011 (r228978) +++ head/sys/dev/drm/radeon_state.c Fri Dec 30 02:07:50 2011 (r228979) @@ -1745,7 +1745,7 @@ static int radeon_cp_dispatch_texture(st DRM_DEBUG("tex=%dx%d blit=%d\n", tex_width, tex->height, blit_width); do { - DRM_DEBUG("tex: ofs=0x%x p=%d f=%d x=%hd y=%hd w=%hd h=%hd\n", + DRM_DEBUG("tex: ofs=0x%x p=%d f=%d x=%d y=%d w=%d h=%d\n", tex->offset >> 10, tex->pitch, tex->format, image->x, image->y, image->width, image->height);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201112300207.pBU27oFc090777>