summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2018-07-31 16:29:25 (GMT)
committeralbert-github <albert.tests@gmail.com>2018-07-31 16:29:25 (GMT)
commitbae4bd915ac018c4a3ce681067e0a1a51017e418 (patch)
tree40e4979d682e9eccdb597be9372d3b8f40322973 /src
parent9ba8bd85999fa7423eb5b44c680e72ad2e9c31bf (diff)
downloadDoxygen-bae4bd915ac018c4a3ce681067e0a1a51017e418.zip
Doxygen-bae4bd915ac018c4a3ce681067e0a1a51017e418.tar.gz
Doxygen-bae4bd915ac018c4a3ce681067e0a1a51017e418.tar.bz2
Correct typing error in warning message.
Diffstat (limited to 'src')
-rw-r--r--src/util.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp
index 6c7e3d5..0ebb57f 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;
}
}