X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Ffile-handle-def.c;h=4546a9ca0c4a137571878b2dab9086d4b63134c0;hb=96994a54e60e9c95b8bba54c2281acf7059b1203;hp=4c4820cb12a08fddfc025890fd1f02afd45bb035;hpb=369c24f1d085a41ec274ebae5fc198fcee567653;p=pspp diff --git a/src/data/file-handle-def.c b/src/data/file-handle-def.c index 4c4820cb12..4546a9ca0c 100644 --- a/src/data/file-handle-def.c +++ b/src/data/file-handle-def.c @@ -494,14 +494,14 @@ fh_lock (struct file_handle *h, enum fh_referent mask UNUSED, HMAP_FOR_EACH_WITH_HASH (lock, struct fh_lock, node, hash, &locks) { - if ( 0 == compare_fh_locks (lock, key)) + if (0 == compare_fh_locks (lock, key)) { found_lock = true; break; } } - if ( found_lock ) + if (found_lock) { if (strcmp (lock->type, type)) { @@ -533,7 +533,7 @@ fh_lock (struct file_handle *h, enum fh_referent mask UNUSED, found_lock = false; HMAP_FOR_EACH_WITH_HASH (lock, struct fh_lock, node, hash, &locks) { - if ( 0 == compare_fh_locks (lock, key)) + if (0 == compare_fh_locks (lock, key)) { found_lock = true; break; @@ -608,7 +608,7 @@ fh_is_locked (const struct file_handle *handle, enum fh_access access) HMAP_FOR_EACH_WITH_HASH (k, struct fh_lock, node, hash, &locks) { - if ( 0 == compare_fh_locks (k, &key)) + if (0 == compare_fh_locks (k, &key)) { is_locked = true; break;