Implemented the default case.

geesefs-0-30-9
Aaron Jacobs 2015-03-24 14:38:57 +11:00
parent e4d3d0aa56
commit 18d288f1d9
1 changed files with 2 additions and 1 deletions

View File

@ -36,7 +36,8 @@ func Convert(r bazilfuse.Request) (o Op) {
co = &to.commonOp
default:
panic("TODO")
co = &commonOp{}
o = co
}
co.init(r)