Module Name: src Committed By: dyoung Date: Wed Jan 20 19:00:47 UTC 2010
Modified Files:
src/sys/dev: cgd.c
Log Message:
Cosmetic: get out of cgdioctl() early. Instead of
int ret;
switch (...) {
case ...:
ret = ...;
break;
}
return ret;
write:
switch (...) {
case ...:
return ...;
}
To generate a diff of this commit:
cvs rdiff -u -r1.67 -r1.68 src/sys/dev/cgd.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
