diff options
author | Owain Ainsworth <oga@cvs.openbsd.org> | 2010-09-23 18:40:01 +0000 |
---|---|---|
committer | Owain Ainsworth <oga@cvs.openbsd.org> | 2010-09-23 18:40:01 +0000 |
commit | 80043065dda871c64532f98ee9a191407d938eca (patch) | |
tree | 0ed3846d6311d246280f47414897431f6788a535 /sys/arch/alpha/eisa | |
parent | 391adfa80738d51c7fb886b192987657c196b339 (diff) |
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/arch/alpha/eisa')
0 files changed, 0 insertions, 0 deletions