Fixed a constant string concatenation
Adjust for recent compilers requiring a space between concatenated strings.pull/2/head
parent
094f9b3f2d
commit
56b8e713d5
|
@ -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 "
|
||||
|
|
Loading…
Reference in New Issue