diff options
Diffstat (limited to 'swat/esptest')
-rw-r--r-- | swat/esptest/qooxdoo.esp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/swat/esptest/qooxdoo.esp b/swat/esptest/qooxdoo.esp index dbdb4ddc7a..76d3236fc9 100644 --- a/swat/esptest/qooxdoo.esp +++ b/swat/esptest/qooxdoo.esp @@ -53,8 +53,7 @@ } function start_call() { - server_call('remote.esp', 'printf', null, - "Starting calls ... (stopit=%d)\\n", stopit); + srv_printf("Starting calls ... (stopit=%d)\\n", stopit); stopit = 0; shared.counter = 0; shared.start_time = 0; @@ -62,7 +61,7 @@ }; function stop_call() { - server_call('remote.esp', 'printf', null, "Stopping calls\\n"); + srv_printf("Stopping calls\\n"); stopit = 1; }; |