Skip to content

Commit

Permalink
BZ 977: fix typo in use of riak_object:syntactic_merge(): call /4 *no…
Browse files Browse the repository at this point in the history
…t* /3.
  • Loading branch information
slfritchie authored and Jon Meredith committed May 4, 2011
1 parent 97cc02b commit 9078b18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/riak_kv_vnode.erl
Expand Up @@ -371,7 +371,7 @@ syntactic_put_merge(Mod, ModState, BKey, Obj1, ReqId, StartTime) ->
{ok, Val0} ->
Obj0 = binary_to_term(Val0),
ResObj = riak_object:syntactic_merge(
Obj0,Obj1,term_to_binary(ReqId)), StartTime,
Obj0,Obj1,term_to_binary(ReqId),StartTime),
case riak_object:vclock(ResObj) =:= riak_object:vclock(Obj0) of
true -> {oldobj, ResObj};
false -> {newobj, ResObj}
Expand Down

0 comments on commit 9078b18

Please sign in to comment.