We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1af2e5 commit 9083a0eCopy full SHA for 9083a0e
src/trace.c
@@ -20,7 +20,7 @@ struct git_trace_data git_trace__data = {0};
20
int git_trace_set(git_trace_level_t level, git_trace_cb callback)
21
{
22
#ifdef GIT_TRACE
23
- assert(level == 0 || callback != NULL);
+ GIT_ASSERT_ARG(level == 0 || callback != NULL);
24
25
git_trace__data.level = level;
26
git_trace__data.callback = callback;
0 commit comments