Commit 6d34ab9a27694a66e0c02237c4b980459cd5e360
engine/variables.c: change vle_tb_append_linef use
There is no formatting, so `vle_tb_append_line()` is enough.
Author: xaizek
Author date (UTC): 2024-11-02 16:39
Committer name: xaizek
Committer date (UTC): 2024-11-02 19:20
Parent(s): 3bfdf64752c09b63156bfe396b44640d9397c13b
Signing key: 99DC5E4DB05F6BE2
Tree: 9ac20f4c1d5fcd497330ea87994d76f4dae8fe11
File src/engine/variables.c changed (mode: 100644) (index de24b9384..37b37535f) |
... |
... |
let_variables(const char cmd[]) |
277 |
277 |
|
|
278 |
278 |
if(!is_valid_op(name, type, op)) |
if(!is_valid_op(name, type, op)) |
279 |
279 |
{ |
{ |
280 |
|
vle_tb_append_linef(vle_err, "Wrong variable type for this operation"); |
|
|
280 |
|
vle_tb_append_line(vle_err, "Wrong variable type for this operation"); |
281 |
281 |
goto fail; |
goto fail; |
282 |
282 |
} |
} |
283 |
283 |
|
|