diff options
author | nulltoken <emeric.fermas@gmail.com> | 2011-03-20 18:36:25 +0100 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2011-03-23 00:07:58 +0200 |
commit | 56d8ca266c92e51a1b38ac68b7aa6a24193f5812 (patch) | |
tree | 83e188bcb8d157cd10774ecaabe0a4a42561f5b6 /include/git2/signature.h | |
parent | fe1920206b7fb780486dcef14d0d6f01835b430d (diff) | |
download | libgit2-56d8ca266c92e51a1b38ac68b7aa6a24193f5812.tar.gz |
Switch from time_t to git_time_t
git_time_t is defined as a signed 64 integer. This allows a true predictable multiplatform behavior.
Diffstat (limited to 'include/git2/signature.h')
-rw-r--r-- | include/git2/signature.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/git2/signature.h b/include/git2/signature.h index 96275aa0..200397ab 100644 --- a/include/git2/signature.h +++ b/include/git2/signature.h @@ -47,7 +47,7 @@ GIT_BEGIN_DECL * @offset timezone offset in minutes for the time * @return the new sig, NULl on out of memory */ -GIT_EXTERN(git_signature *) git_signature_new(const char *name, const char *email, time_t time, int offset); +GIT_EXTERN(git_signature *) git_signature_new(const char *name, const char *email, git_time_t time, int offset); /** * Create a copy of an existing signature. |