diff options
| author | Matthias Melcher <git@matthiasm.com> | 2021-12-19 22:31:59 +0100 |
|---|---|---|
| committer | Matthias Melcher <github@matthiasm.com> | 2021-12-19 22:33:12 +0100 |
| commit | 2328547538d17631cfb10c90ee474b99ea808a67 (patch) | |
| tree | a7b31a3920bfd0ad068c8c75f1db672decb85da9 /fluid/file.cxx | |
| parent | 47164bf9541486f3fd7b32c361f1784f4745c2c3 (diff) | |
Github #351: fixed missing curly brackets.
Diffstat (limited to 'fluid/file.cxx')
| -rw-r--r-- | fluid/file.cxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fluid/file.cxx b/fluid/file.cxx index 044e4b156..59177cb9d 100644 --- a/fluid/file.cxx +++ b/fluid/file.cxx @@ -393,7 +393,10 @@ int write_file(const char *filename, int selected_only) { write_string("\ni18n_static_function"); write_word(i18n_static_function); break; case 2 : /* POSIX catgets */ - if (i18n_file[0]) write_string("\ni18n_file"); write_word(i18n_file); + if (i18n_file[0]) { + write_string("\ni18n_file"); + write_word(i18n_file); + } write_string("\ni18n_set"); write_word(i18n_set); break; } |
