summaryrefslogtreecommitdiff
path: root/src/odb.c
diff options
context:
space:
mode:
authornulltoken <emeric.fermas@gmail.com>2013-09-11 20:13:59 +0200
committernulltoken <emeric.fermas@gmail.com>2013-09-11 20:13:59 +0200
commit8cf805253407e35627aa86f79b17070279106322 (patch)
tree837298dbb9239c7b02da71e2aba17ea0a2e7cd10 /src/odb.c
parent6c38e60a00ad9133b98f6c6b4e73054226c1f88a (diff)
downloadlibgit2-8cf805253407e35627aa86f79b17070279106322.tar.gz
errors: Fix format of some error messages
Diffstat (limited to 'src/odb.c')
-rw-r--r--src/odb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/odb.c b/src/odb.c
index 2e6869547..a0bfec403 100644
--- a/src/odb.c
+++ b/src/odb.c
@@ -445,7 +445,7 @@ int git_odb_get_backend(git_odb_backend **out, git_odb *odb, size_t pos)
return 0;
}
- giterr_set(GITERR_ODB, "No ODB backend loaded at index " PRIuZ, pos);
+ giterr_set(GITERR_ODB, "No ODB backend loaded at index %" PRIuZ, pos);
return GIT_ENOTFOUND;
}