MSVC doesn't like modern code neither

This commit is contained in:
Linquize 2014-01-27 20:51:46 +08:00
parent 66d585c6b3
commit fbc5661ebf

View File

@ -47,11 +47,10 @@
// as an example.
static void check_error(int error_code, const char *action)
{
const git_error *error = giterr_last();
if (!error_code)
return;
const git_error *error = giterr_last();
printf("Error %d %s - %s\n", error_code, action,
(error && error->message) ? error->message : "???");