From 0be7f000a5dd434f2d319250a046e3a82a9e0707 Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Mon, 23 May 2011 21:04:09 +0300 Subject: [PATCH] hashtable: Reword errors --- src/hashtable.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hashtable.c b/src/hashtable.c index 1fb633c53..b40737d67 100644 --- a/src/hashtable.c +++ b/src/hashtable.c @@ -248,7 +248,7 @@ int git_hashtable_remove(git_hashtable *self, const void *key) } } - return git__throw(GIT_ENOTFOUND, "Failed to remove entry. Entry not found"); + return git__throw(GIT_ENOTFOUND, "Entry not found in hash table"); } int git_hashtable_merge(git_hashtable *self, git_hashtable *other)