Browse Source

Fixed pointer conversion issue.

Brucey 2 years ago
parent
commit
33949d4735
1 changed files with 1 additions and 1 deletions
  1. 1 1
      format.mod/format.bmx

+ 1 - 1
format.mod/format.bmx

@@ -595,7 +595,7 @@ Type TPtrArg Extends TArg
 	Field value:Byte Ptr
 
 	Method ToString:String()
-		Return String.fromSizeT(Size_T(Size_T Ptr(value)))
+		Return String.fromSizeT((Size_T Ptr(value))[0])
 	End Method
 
 	Method ArgType:Int()