diff options
Diffstat (limited to 'libidu/idfile.c')
-rw-r--r-- | libidu/idfile.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libidu/idfile.c b/libidu/idfile.c index e377145..d27c4b3 100644 --- a/libidu/idfile.c +++ b/libidu/idfile.c @@ -85,8 +85,7 @@ locate_id_file_name (char const *arg) if (stat (file_name_buffer, &statb) != 0) return NULL; } - while (!((statb.st_ino == rootb.st_ino) || - (statb.st_dev == rootb.st_dev))); + while (statb.st_ino != rootb.st_ino || statb.st_dev != rootb.st_dev); return NULL; } |