Commit c67fbb29 authored by Rémi Duraffort's avatar Rémi Duraffort

Remove dead increment.

parent 86bb0362
......@@ -907,7 +907,7 @@ static char * copy_next_paths_token( char * paths, char ** remaining_paths )
else
path[done++] = paths[i];
}
path[done++] = 0;
path[done] = 0;
/* Return the remaining paths */
if( remaining_paths ) {
......
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