Skip to content

Commit 92076ba

Browse files
committed
Fix compilation error
1 parent f923452 commit 92076ba

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/WIP/stdError.cls

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ Private This as TThis
2424
' End With
2525
' end sub
2626
Public Function getSentry(ByVal sSubName As String, ParamArray args() as variant) As Object 'stdSentry
27-
Call stdError.addStack(sSubName, args)
27+
Dim v: v = args
28+
Call stdError.addStack(sSubName, v)
2829

2930
'A fresh instance acts as a stack popper.
3031
set getSentry = New stdError

0 commit comments

Comments
 (0)