From fea400f87b05c87ac73d521ec492f18e04e1a986 Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Wed, 1 Jun 2011 23:41:30 +0200 Subject: [PATCH] signature: Fix compilation --- src/signature.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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");