Skip to content

Commit

Permalink
[73_6] Minor fix for show_git_last_error
Browse files Browse the repository at this point in the history
  • Loading branch information
da-liii authored Jan 16, 2024
1 parent 1cc282c commit b552f83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Plugins/Git/git.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ show_git_last_error (int error) {
#else
const git_error* e= git_error_last ();
#endif
debug_io << "libgit2 error " << error // << "/" << e->klass << ": " << e->message
debug_io << "libgit2 error " << error << "/" << e->klass << ": " << e->message
<< LF;
}

Expand Down

0 comments on commit b552f83

Please sign in to comment.