Author: blueswirl Date: Sat Oct 9 12:16:21 2010 New Revision: 890 URL: http://tracker.coreboot.org/trac/openbios/changeset/890
Log: Zero-pad byte properties
.properties before: someproperty -- 3 : 1 42 3
Now: someproperty -- 3 : 01 42 03
Signed-off-by: Andreas Färber andreas.faerber@web.de Signed-off-by: Blue Swirl blauwirbel@gmail.com
Modified: trunk/openbios-devel/forth/admin/devices.fs
Modified: trunk/openbios-devel/forth/admin/devices.fs ============================================================================== --- trunk/openbios-devel/forth/admin/devices.fs Sat Oct 9 12:16:19 2010 (r889) +++ trunk/openbios-devel/forth/admin/devices.fs Sat Oct 9 12:16:21 2010 (r890) @@ -283,7 +283,7 @@ dup r@ + c@ ( len n ch )
- pocket tohexstr type ." " + pocket tohexstr dup 2 <> if ." 0" then type ." " 1+ repeat 2drop r> drop 1