Fixed alignment of hexdumps in Packet.ToString().

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@88 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
axial
2006-07-25 22:00:41 +00:00
parent 353eb582c3
commit 9c4f47aa00

View File

@@ -68,7 +68,7 @@ namespace libsecondlife
{
if ((i + j) < byteArray.Length)
{
output += String.Format("{0:X} ", byteArray[i + j]);
output += String.Format("{0:X2} ", byteArray[i + j]);
}
else
{