From 56b8e713d56895944d1ff89b4ff2dee4c37393ed Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jean-Pierre=20Andr=C3=A9?= Date: Tue, 26 Jan 2021 10:06:18 +0100 Subject: [PATCH] Fixed a constant string concatenation Adjust for recent compilers requiring a space between concatenated strings. --- ntfsprogs/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ntfsprogs/utils.c b/ntfsprogs/utils.c index 393c34a4..31522da3 100644 --- a/ntfsprogs/utils.c +++ b/ntfsprogs/utils.c @@ -75,7 +75,7 @@ #include "logging.h" #include "misc.h" -const char *ntfs_bugs = "Developers' email address: "NTFS_DEV_LIST"\n"; +const char *ntfs_bugs = "Developers' email address: " NTFS_DEV_LIST "\n"; const char *ntfs_gpl = "This program is free software, released under the GNU " "General Public License\nand you are welcome to redistribute it under " "certain conditions. It comes with\nABSOLUTELY NO WARRANTY; for " -- 2.11.0