tests: style cleanup

This commit is contained in:
Christian Hergert
2021-09-21 15:40:42 -07:00
parent 5b6377ee78
commit b0812681b2

View File

@ -36,10 +36,10 @@ read_inode (const char *filename)
return (ino_t)-1;
if (strcmp (filename, "[vdso]") == 0)
return (ino_t)0;
return (ino_t)0;
if (stat (filename, &statbuf) < 0)
return (ino_t)-1;
return (ino_t)-1;
return statbuf.st_ino;
}