diff options
Diffstat (limited to 'apps/couch')
-rw-r--r-- | apps/couch/src/couch_util.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/couch/src/couch_util.erl b/apps/couch/src/couch_util.erl index 8217a268..3a6e92c5 100644 --- a/apps/couch/src/couch_util.erl +++ b/apps/couch/src/couch_util.erl @@ -328,7 +328,7 @@ to_binary(V) when is_list(V) -> try list_to_binary(V) catch - _ -> + _:_ -> list_to_binary(io_lib:format("~p", [V])) end; to_binary(V) when is_atom(V) -> |