diff options
author | 2010-09-23 18:40:00 +0000 | |
---|---|---|
committer | 2010-09-23 18:40:00 +0000 | |
commit | 4eb3704895d04202581e47f1ecb9f38d772acb94 (patch) | |
tree | e46f0eed8d73c82cd849b0f6a042240cc6946dc0 /sys/kern/subr_disk.c | |
parent | - first stab at documenting the haskell module (diff) | |
download | wireguard-openbsd-4eb3704895d04202581e47f1ecb9f38d772acb94.tar.xz wireguard-openbsd-4eb3704895d04202581e47f1ecb9f38d772acb94.zip |
Change:
/* something */
if (error) {
VOP_UNLOCK();
return;
}
VOP_UNLOCK();
to the clearer and shorter:
VOP_UNLOCK();
if (error)
return;
ok thib@, jsing@ as part of a larger diff.
Diffstat (limited to 'sys/kern/subr_disk.c')
0 files changed, 0 insertions, 0 deletions