Fixed a few more build errors.

geesefs-0-30-9
Aaron Jacobs 2015-07-27 14:28:44 +10:00
parent 623ae99fae
commit 585af56849
1 changed files with 3 additions and 3 deletions

View File

@ -415,11 +415,11 @@ func (c *Connection) ReadOp() (op fuseops.Op, err error) {
c.finishOp(m.Header().Opcode, m.Header().Unique)
// Debug logging
if c.debugLogger != nil {
if debugLogForOp != nil {
if opErr == nil {
op.Logf("-> OK: %s", op.DebugString())
debugLogForOp(1, "-> OK: %s", op.DebugString())
} else {
op.Logf("-> error: %v", opErr)
debugLogForOp(1, "-> error: %v", opErr)
}
}