diff options
author | Vicent Marti <tanoku@gmail.com> | 2011-06-01 23:41:30 +0200 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2011-06-01 23:41:30 +0200 |
commit | fea400f87b05c87ac73d521ec492f18e04e1a986 (patch) | |
tree | ca95073ad006bf7937e1b41f92d4c0b7ed4066bc | |
parent | d0323a5f63219428aada1c36dfa8a712a695d778 (diff) | |
download | libgit2-fea400f87b05c87ac73d521ec492f18e04e1a986.tar.gz |
signature: Fix compilation
-rw-r--r-- | src/signature.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/signature.c b/src/signature.c index 0527eaa5b..51a2fff47 100644 --- a/src/signature.c +++ b/src/signature.c @@ -119,7 +119,7 @@ static int parse_timezone_offset(const char *buffer, long *offset_out) return git__throw(GIT_EOBJCORRUPTED, "Failed to parse TZ offset. It doesn't start with '+' or '-'"); if (offset_start[1] < '0' || offset_start[1] > '9') - return git__throw(GIT_EOBJCORRUPTED, "Failed to parse TZ offset. + return git__throw(GIT_EOBJCORRUPTED, "Failed to parse TZ offset."); if (git__strtol32(&dec_offset, offset_start + 1, &offset_end, 10) < GIT_SUCCESS) return git__throw(GIT_EOBJCORRUPTED, "Failed to parse TZ offset. It isn't a number"); |