[Cmake-commits] CMake branch, next, updated. v3.5.0-rc2-184-g06168be
Nils Gladitz
nilsgladitz at gmail.com
Wed Feb 17 10:59:55 EST 2016
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".
The branch, next has been updated
via 06168be1c3824a0850bb76e0f397aa74a7f8a763 (commit)
via 3d2cdb0670cd0b50594dfb53efaaf80487959ead (commit)
from a3e303bd63a4ac6c5ed6a2ef0863f677194ecef9 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=06168be1c3824a0850bb76e0f397aa74a7f8a763
commit 06168be1c3824a0850bb76e0f397aa74a7f8a763
Merge: a3e303b 3d2cdb0
Author: Nils Gladitz <nilsgladitz at gmail.com>
AuthorDate: Wed Feb 17 10:59:54 2016 -0500
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Wed Feb 17 10:59:54 2016 -0500
Merge topic 'unix-timestamps' into next
3d2cdb06 !fixup CMake: Fix copy&paste error in cmTimestamp
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=3d2cdb0670cd0b50594dfb53efaaf80487959ead
commit 3d2cdb0670cd0b50594dfb53efaaf80487959ead
Author: Nils Gladitz <nilsgladitz at gmail.com>
AuthorDate: Wed Feb 17 16:59:29 2016 +0100
Commit: Nils Gladitz <nilsgladitz at gmail.com>
CommitDate: Wed Feb 17 16:59:29 2016 +0100
!fixup CMake: Fix copy&paste error in cmTimestamp
diff --git a/Source/cmTimestamp.cxx b/Source/cmTimestamp.cxx
index 2724e2d..2cb3a15 100644
--- a/Source/cmTimestamp.cxx
+++ b/Source/cmTimestamp.cxx
@@ -157,7 +157,7 @@ std::string cmTimestamp::AddTimestampComponent(
{
// Build a time_t for UNIX epoch and substract from the input "timeT":
struct tm tmUnixEpoch;
- memset(&timeStruct, 0, sizeof(tmUnixEpoch));
+ memset(&tmUnixEpoch, 0, sizeof(tmUnixEpoch));
tmUnixEpoch.tm_mday = 1;
tmUnixEpoch.tm_year = 1970-1900;
-----------------------------------------------------------------------
Summary of changes:
Source/cmTimestamp.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list