Merge "logcat: test: tail_# occasional failures"
am: e7b335b471
Change-Id: I4176e5e0ef3f0e2b8bc0edc9c49410f516f371f6
This commit is contained in:
commit
a1f43ebf89
|
@ -208,9 +208,9 @@ static char* fgetLongTime(char* buffer, size_t buflen, FILE* fp) {
|
|||
if ((*ep != '-') && (*ep != '.')) {
|
||||
continue;
|
||||
}
|
||||
// Find PID field
|
||||
// Find PID field. Look for ': ' or ':[0-9][0-9][0-9]'
|
||||
while (((ep = strchr(ep, ':'))) && (*++ep != ' ')) {
|
||||
;
|
||||
if (isdigit(ep[0]) && isdigit(ep[1]) && isdigit(ep[2])) break;
|
||||
}
|
||||
if (!ep) {
|
||||
continue;
|
||||
|
|
Loading…
Reference in New Issue