Fix man page typo and cppcheck warnings.
Remind unit tests / tests (push) Successful in 32s

This commit is contained in:
Dianne Skoll
2024-12-13 15:22:46 -05:00
parent 6373ae8ca5
commit a19b009f7c
5 changed files with 5 additions and 12 deletions
+1 -1
View File
@@ -968,7 +968,7 @@ static int SetTranslatableVariable(SysVar *v, Value *value)
static int GetTranslatableVariable(SysVar *v, Value *value)
{
char const *translated = t((char const *) v->value);
char const *translated = tr((char const *) v->value);
if (translated) {
value->v.str = StrDup(translated);
} else {