Kaydet (Commit) eb94d42d authored tarafından Michael Stahl's avatar Michael Stahl

concat-deps: bin pointless duplication

Change-Id: I8aedf930bc007bf83f8111db9a5565668142321e
üst c8a8f5e6
...@@ -846,16 +846,9 @@ static inline void print_fullpaths(char* line) ...@@ -846,16 +846,9 @@ static inline void print_fullpaths(char* line)
end = token + 2; end = token + 2;
} }
} }
else if(*token == ':' || *token == '\\' || *token == '/' ||
*token == '$' || ':' == token[1])
{
if(fwrite(token, token_len, 1, stdout) != 1)
abort();
fputc(' ', stdout);
}
else else
{ {
if(fwrite(token, end - token, 1, stdout) != 1) if (fwrite(token, token_len, 1, stdout) != 1)
abort(); abort();
fputc(' ', stdout); fputc(' ', stdout);
} }
......
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