print path elements if DebugFind == true in parsePath

This commit is contained in:
Joel Dice 2010-11-27 16:27:22 -07:00
parent 0f04865e93
commit 3cba6edf1f

View File

@ -673,6 +673,10 @@ parsePath(System* s, Allocator* allocator, const char* path,
}
}
if (DebugFind) {
fprintf(stderr, "add element %.*s %p\n", token.length, token.s, e);
}
if (e) {
if (prev) {
prev->next = e;