Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit 900b86eb authored by snuverink_j's avatar snuverink_j
Browse files

fix clang compiler error in debug

parent 16774606
No related branches found
No related tags found
No related merge requests found
......@@ -146,7 +146,7 @@ void write_flag(char* filename, int flag)
{
FILE *fp;
assert(0 <= flag <= 11);
assert(0 <= flag && flag <= 11);
fp = fopen(filename, "w");
assert(fp != NULL);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment