Fixed handling of foo.__TECHMAP_...

This commit is contained in:
Clifford Wolf 2015-01-15 13:36:57 +01:00
parent df9d096a7d
commit 9065fb25cc
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ struct TechmapWorker
continue; continue;
const char *q = strrchr(p+1, '.'); const char *q = strrchr(p+1, '.');
p = q ? q : p+1; p = q ? q+1 : p+1;
if (!strncmp(p, "_TECHMAP_", 9)) { if (!strncmp(p, "_TECHMAP_", 9)) {
TechmapWireData record; TechmapWireData record;