svn commit: r244960 - head/tools/tools/ath/arcode

Adrian Chadd adrian at FreeBSD.org
Wed Jan 2 18:03:19 UTC 2013


Author: adrian
Date: Wed Jan  2 18:03:19 2013
New Revision: 244960
URL: http://svnweb.freebsd.org/changeset/base/244960

Log:
  Fix incorrect format string.

Modified:
  head/tools/tools/ath/arcode/arcode.c

Modified: head/tools/tools/ath/arcode/arcode.c
==============================================================================
--- head/tools/tools/ath/arcode/arcode.c	Wed Jan  2 16:47:23 2013	(r244959)
+++ head/tools/tools/ath/arcode/arcode.c	Wed Jan  2 18:03:19 2013	(r244960)
@@ -106,7 +106,7 @@ main(int argc, const char *argv[])
 				op_mark(&a);
 				break;
 			default:
-				printf("op: %s; reg: %x; val: %x\n",
+				printf("op: %d; reg: 0x%x; val: 0x%x\n",
 				    a.op, a.reg, a.val);
 		}
 	}


More information about the svn-src-all mailing list