diff options
Diffstat (limited to 'testsuite/buildok/nineteen.stp')
-rwxr-xr-x | testsuite/buildok/nineteen.stp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuite/buildok/nineteen.stp b/testsuite/buildok/nineteen.stp index be12b6f7..2019e209 100755 --- a/testsuite/buildok/nineteen.stp +++ b/testsuite/buildok/nineteen.stp @@ -9,13 +9,13 @@ function msg2 (x,y) { probe begin { msg1("55"); - msg1(string(55)) + msg1(sprint(55)) msg2("100", "GOOD") - msg2("GOOD", string(100)) + msg2("GOOD", sprint(100)) # the next line caused a compile failure when uncommented; PR 1335 - msg2(string(100), "GOOD") + msg2(sprint(100), "GOOD") exit() } |