summaryrefslogtreecommitdiffstats
path: root/src/util.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2018-09-02 18:57:31 (GMT)
committerGitHub <noreply@github.com>2018-09-02 18:57:31 (GMT)
commit298fbfe156d60bf75cf1d00f4fdc42f15c4561c9 (patch)
treee269be2bfb08c084bcabca37e88effe5b99f9042 /src/util.cpp
parentbaba2724a4a76719d4bcff093d64ec50cd53db57 (diff)
parentbae4bd915ac018c4a3ce681067e0a1a51017e418 (diff)
downloadDoxygen-298fbfe156d60bf75cf1d00f4fdc42f15c4561c9.zip
Doxygen-298fbfe156d60bf75cf1d00f4fdc42f15c4561c9.tar.gz
Doxygen-298fbfe156d60bf75cf1d00f4fdc42f15c4561c9.tar.bz2
Merge pull request #6418 from albert-github/feature/bug_SOURCE_DATE_EPOCH
Correct typing error in warning message.
Diffstat (limited to 'src/util.cpp')
-rw-r--r--src/util.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp
index 0d248e1..7b4c1d2 100644
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -2591,7 +2591,7 @@ QCString dateToString(bool includeTime)
static bool warnedOnce=FALSE;
if (!warnedOnce)
{
- warn_uncond("Environment variable SOURCE_DATA_EPOCH must have a value smaller than or equal to %llu; actual value %llu\n",UINT_MAX,epoch);
+ warn_uncond("Environment variable SOURCE_DATE_EPOCH must have a value smaller than or equal to %llu; actual value %llu\n",UINT_MAX,epoch);
warnedOnce=TRUE;
}
}