OSDN Git Service

Fixed a constant string concatenation
authorJean-Pierre André <jpandre@users.sourceforge.net>
Tue, 26 Jan 2021 09:06:18 +0000 (10:06 +0100)
committerJean-Pierre André <jpandre@users.sourceforge.net>
Tue, 26 Jan 2021 09:06:18 +0000 (10:06 +0100)
Adjust for recent compilers requiring a space between concatenated strings.

ntfsprogs/utils.c

index 393c34a..31522da 100644 (file)
@@ -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 "