svn commit: r229732 - stable/9/sys/dev/drm

Dimitry Andric dim at FreeBSD.org
Fri Jan 6 21:16:52 UTC 2012


Author: dim
Date: Fri Jan  6 21:16:51 2012
New Revision: 229732
URL: http://svn.freebsd.org/changeset/base/229732

Log:
  MFC r228979:
  
  In sys/dev/drm/radeon_state.c, use the correct printf length modifiers
  for ints.

Modified:
  stable/9/sys/dev/drm/radeon_state.c
Directory Properties:
  stable/9/sys/   (props changed)

Modified: stable/9/sys/dev/drm/radeon_state.c
==============================================================================
--- stable/9/sys/dev/drm/radeon_state.c	Fri Jan  6 21:14:54 2012	(r229731)
+++ stable/9/sys/dev/drm/radeon_state.c	Fri Jan  6 21:16:51 2012	(r229732)
@@ -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);
 


More information about the svn-src-all mailing list