Skip to content

Commit

Permalink
Merge pull request ceph#3200 from boydc2014/master
Browse files Browse the repository at this point in the history
fix unmatched op code

Reviewed-by: Loic Dachary <[email protected]>
  • Loading branch information
ldachary committed Dec 22, 2014
2 parents 3b98b83 + e89bafb commit e1384af
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/osd/osd_types.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4752,8 +4752,7 @@ ostream& operator<<(ostream& out, const OSDOp& op)
}
if (op.op.xattr.value_len)
out << " (" << op.op.xattr.value_len << ")";
if (op.op.op == CEPH_OSD_OP_CMPXATTR)
out << " op " << (int)op.op.xattr.cmp_op << " mode " << (int)op.op.xattr.cmp_mode;
out << " op " << (int)op.op.xattr.cmp_op << " mode " << (int)op.op.xattr.cmp_mode;
break;
}
}
Expand Down

0 comments on commit e1384af

Please sign in to comment.