Unverified Commit 80be19b9 by Patrick Steinhardt Committed by GitHub

Merge pull request #4955 from csware/c4098

Fix VS warning C4098: 'giterr_set_str' : void function returning a value
parents 635693d3 53bf0bde
...@@ -226,7 +226,7 @@ void giterr_clear(void) ...@@ -226,7 +226,7 @@ void giterr_clear(void)
void giterr_set_str(int error_class, const char *string) 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) 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