diff options
author | rsc <devnull@localhost> | 2004-10-22 17:13:54 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2004-10-22 17:13:54 +0000 |
commit | 298f6bd657fd2c0cd6c1fc049be9e2a139e2ae05 (patch) | |
tree | 852f25c9590afcda3eebfc0373988465f3ae9f60 /src/lib9/fmt | |
parent | 32116738e10e88f4d8eb136652fa945c6415d462 (diff) | |
download | plan9port-298f6bd657fd2c0cd6c1fc049be9e2a139e2ae05.tar.gz plan9port-298f6bd657fd2c0cd6c1fc049be9e2a139e2ae05.tar.bz2 plan9port-298f6bd657fd2c0cd6c1fc049be9e2a139e2ae05.zip |
print 0 %ux as 0x0
Diffstat (limited to 'src/lib9/fmt')
-rw-r--r-- | src/lib9/fmt/dofmt.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lib9/fmt/dofmt.c b/src/lib9/fmt/dofmt.c index 39a3d347..cee3f4e4 100644 --- a/src/lib9/fmt/dofmt.c +++ b/src/lib9/fmt/dofmt.c @@ -443,7 +443,6 @@ __ifmt(Fmt *f) *p-- = '0'; n = 1; } - fl &= ~FmtSharp; } for(w = f->prec; n < w && p > buf+3; n++) *p-- = '0'; |