Bigint toHex: Remove duplicate buffer

This commit is contained in:
Don Clugston 2011-02-18 09:35:51 +01:00
parent 18cdcdc298
commit 80c64d92e4

View file

@ -408,8 +408,8 @@ public:
sink("-");
if (formatString.length>0 && formatString[$-1]=='x' || formatString[$-1]=='X')
{
char[] buff = data.toHexString(1, '_');
sink(data.toHexString(0, '_'));
char[] buff = data.toHexString(0, '_');
sink(buff);
}
else
{