Skip to content

Commit 55385e8

Browse files
committed
Fix function arg spaces
1 parent 0fc42c3 commit 55385e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hld/Eval.hx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -989,7 +989,7 @@ class Eval {
989989
return str;
990990
}
991991

992-
function readBytesStrAt(length, read: Int->Int, t:HLType, pos:String) : String {
992+
function readBytesStrAt( length : Int , read : Int->Int, t : HLType, pos : String) : String {
993993
var pos = toInt(eval(pos));
994994
var blen = align.typeSize(t);
995995
if( pos < 0 || (length >= 0 && pos > length-blen) )
@@ -1021,7 +1021,7 @@ class Eval {
10211021
return s.file+":" + s.line;
10221022
}
10231023

1024-
function readRegAddress(index) : VarAddress {
1024+
function readRegAddress( index ) : VarAddress {
10251025
var r = module.getFunctionRegs(funIndex)[index];
10261026
if( r == null )
10271027
return ANone;

0 commit comments

Comments
 (0)