From 921436805fee2c1d60b2ddd5d5db08eb08d8aac7 Mon Sep 17 00:00:00 2001 From: Michel-FK Date: Mon, 26 Apr 2021 08:09:33 +0200 Subject: [PATCH] add notice for SAVE Signed-off-by: Michel-FK --- mapping_list.c | 1 + 1 file changed, 1 insertion(+) diff --git a/mapping_list.c b/mapping_list.c index 1626a62..eea06ac 100644 --- a/mapping_list.c +++ b/mapping_list.c @@ -359,6 +359,7 @@ bool save_mapping_list(const char *name, mapping_list_t *list) fp = stdout; } else { fp = fopen(name, "w"); + FK_NOTICE("SAVE file %s\n", name); } if (fp == NULL) { FK_ERROR("Cannot open save file \"%s\": %s\n", name, strerror(errno));