diff options
author | Xavier Roche <roche@httrack.com> | 2023-01-14 11:31:33 +0100 |
---|---|---|
committer | Xavier Roche <roche@httrack.com> | 2023-01-14 11:33:25 +0100 |
commit | 3b4b42cdcca4cba2626a03f03ec8a58bb0b3dc05 (patch) | |
tree | 0be595b19ccf2f777e3be11252ec48239d7413c5 | |
parent | a5c82c17a6819c90b575da79399454e822afda9e (diff) |
Fixed warnings about missing spaces between literal and string macro (Bernhard Übelacker)
-rw-r--r-- | src/htsglobal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/htsglobal.h b/src/htsglobal.h index 7555b13..94a2c4a 100644 --- a/src/htsglobal.h +++ b/src/htsglobal.h @@ -208,9 +208,9 @@ Please visit our Website: http://www.httrack.com /* Copyright (C) 1998-2017 Xavier Roche and other contributors */ #define HTTRACK_AFF_AUTHORS "[XR&CO'2014]" -#define HTS_DEFAULT_FOOTER "<!-- Mirrored from %s%s by HTTrack Website Copier/"HTTRACK_AFF_VERSION" "HTTRACK_AFF_AUTHORS", %s -->" +#define HTS_DEFAULT_FOOTER "<!-- Mirrored from %s%s by HTTrack Website Copier/" HTTRACK_AFF_VERSION " " HTTRACK_AFF_AUTHORS ", %s -->" #define HTTRACK_WEB "http://www.httrack.com" -#define HTS_UPDATE_WEBSITE "http://www.httrack.com/update.php3?Product=HTTrack&Version="HTTRACK_VERSIONID"&VersionStr="HTTRACK_VERSION"&Platform=%d&Language=%s" +#define HTS_UPDATE_WEBSITE "http://www.httrack.com/update.php3?Product=HTTrack&Version=" HTTRACK_VERSIONID "&VersionStr=" HTTRACK_VERSION "&Platform=%d&Language=%s" #define H_CRLF "\x0d\x0a" #define CRLF "\x0d\x0a" |