Commit 53bf0bde by Sven Strickroth

Fix VS warning C4098: 'giterr_set_str' : void function returning a value

Signed-off-by: Sven Strickroth <email@cs-ware.de>
parent 635693d3
......@@ -226,7 +226,7 @@ void giterr_clear(void)
void giterr_set_str(int error_class, const char *string)
{
return git_error_set_str(error_class, string);
git_error_set_str(error_class, string);
}
void giterr_set_oom(void)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment