diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2018-09-02 18:57:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-02 18:57:31 (GMT) |
commit | 298fbfe156d60bf75cf1d00f4fdc42f15c4561c9 (patch) | |
tree | e269be2bfb08c084bcabca37e88effe5b99f9042 | |
parent | baba2724a4a76719d4bcff093d64ec50cd53db57 (diff) | |
parent | bae4bd915ac018c4a3ce681067e0a1a51017e418 (diff) | |
download | Doxygen-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.
-rw-r--r-- | src/util.cpp | 2 |
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; } } |