Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mRemoteNG/PuTTYNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorSimon Tatham <anakin@pobox.com>2022-08-03 22:48:46 +0300
committerSimon Tatham <anakin@pobox.com>2022-08-03 22:48:46 +0300
commit9cac27946ac59e5954db1f6d4a41f63accc9bcb6 (patch)
tree3de7b9dc5199bfd5654098f250c87f8c6706395d /utils
parent4b8dc562844a4ea0fdfda53a05a275c50a23d94a (diff)
Formatting: miscellaneous.
This patch fixes a few other whitespace and formatting issues which were pointed out by the bulk-reindent or which I spotted in passing, some involving manual editing to break lines more nicely. I think the weirdest hunk in here is the one in windows/window.c TranslateKey() where _half_ of an assignment statement inside an 'if' was on the same line as the trailing paren of the if condition. No idea at all how that one managed to happen!
Diffstat (limited to 'utils')
-rw-r--r--utils/conf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/conf.c b/utils/conf.c
index 246dc3eb..53195180 100644
--- a/utils/conf.c
+++ b/utils/conf.c
@@ -476,7 +476,7 @@ void conf_del_str_str(Conf *conf, int primary, const char *secondary)
del234(conf->tree, entry);
free_entry(entry);
}
- }
+}
void conf_set_filename(Conf *conf, int primary, const Filename *value)
{