svn commit: r199101 - head/sbin/camcontrol

Alexander Motin mav at FreeBSD.org
Mon Nov 9 19:47:47 UTC 2009


Author: mav
Date: Mon Nov  9 19:47:46 2009
New Revision: 199101
URL: http://svn.freebsd.org/changeset/base/199101

Log:
  Fix variable type.

Modified:
  head/sbin/camcontrol/camcontrol.c

Modified: head/sbin/camcontrol/camcontrol.c
==============================================================================
--- head/sbin/camcontrol/camcontrol.c	Mon Nov  9 19:26:28 2009	(r199100)
+++ head/sbin/camcontrol/camcontrol.c	Mon Nov  9 19:47:46 2009	(r199101)
@@ -4143,7 +4143,7 @@ atapm(struct cam_device *device, int arg
 	union ccb *ccb;
 	int retval = 0;
 	int t = -1;
-	char c;
+	int c;
 	u_char cmd, sc;
 
 	ccb = cam_getccb(device);


More information about the svn-src-all mailing list