Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/index.h')
-rw-r--r--src/index.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.h b/src/index.h
index a64c645b3..8b9b49498 100644
--- a/src/index.h
+++ b/src/index.h
@@ -92,7 +92,7 @@ GIT_INLINE(bool) git_index_entry_newer_than_index(
/* If the timestamp is the same or newer than the index, it's racy */
#if defined(GIT_USE_NSEC)
- if ((int32_t)index->stamp.tv_sec < entry->mtime.seconds)
+ if ((int32_t)index->stamp.mtime.tv_sec < entry->mtime.seconds)
return true;
else if ((int32_t)index->stamp.mtime.tv_sec > entry->mtime.seconds)
return false;