Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 30 Apr 2005 21:21:32 GMT
From:      Wayne Salamon <wsalamon@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 76307 for review
Message-ID:  <200504302121.j3ULLWGb096299@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=76307

Change 76307 by wsalamon@rickenbacker on 2005/04/30 21:21:22

	Print the value of the arg64 token as hex, not decimal.

Affected files ...

.. //depot/projects/trustedbsd/openbsm/libbsm/bsm_io.c#7 edit

Differences ...

==== //depot/projects/trustedbsd/openbsm/libbsm/bsm_io.c#7 (text+ko) ====

@@ -559,7 +559,7 @@
 	print_delim(fp, del);
 	print_1_byte(fp, tok->tt.arg64.no, "%u");
 	print_delim(fp, del);
-	print_8_bytes(fp, tok->tt.arg64.val, "%lld");
+	print_8_bytes(fp, tok->tt.arg64.val, "%#llx");
 	print_delim(fp, del);
 	print_string(fp, tok->tt.arg64.text, tok->tt.arg64.len);
 }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200504302121.j3ULLWGb096299>