From 2328547538d17631cfb10c90ee474b99ea808a67 Mon Sep 17 00:00:00 2001 From: Matthias Melcher Date: Sun, 19 Dec 2021 22:31:59 +0100 Subject: Github #351: fixed missing curly brackets. --- fluid/file.cxx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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; } -- cgit v1.2.3