diff options
Diffstat (limited to 'commit-graph.h')
-rw-r--r-- | commit-graph.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/commit-graph.h b/commit-graph.h index 00f00745b7..2e9aa7824e 100644 --- a/commit-graph.h +++ b/commit-graph.h @@ -145,12 +145,12 @@ void disable_commit_graph(struct repository *r); struct commit_graph_data { uint32_t graph_pos; - uint32_t generation; + timestamp_t generation; }; /* * Commits should be parsed before accessing generation, graph positions. */ -uint32_t commit_graph_generation(const struct commit *); +timestamp_t commit_graph_generation(const struct commit *); uint32_t commit_graph_position(const struct commit *); #endif |