summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTuncer Ayaz <tuncer.ayaz@gmail.com>2015-06-19 16:38:36 +0200
committerTuncer Ayaz <tuncer.ayaz@gmail.com>2015-06-19 16:38:36 +0200
commite3a2917afc13d220a0d0a3daca40f0693c6cc94d (patch)
treee786139514bba473080e99b4fc20d7b64dea67b4 /src
parent0262332565b8b29ff0fb8f7ed0aad0ff9c9b1839 (diff)
downloadrebar-e3a2917afc13d220a0d0a3daca40f0693c6cc94d.tar.gz
rmemo: properly handle unsupported call
Diffstat (limited to 'src')
-rw-r--r--src/rmemo.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rmemo.erl b/src/rmemo.erl
index 54a8626..dd3642f 100644
--- a/src/rmemo.erl
+++ b/src/rmemo.erl
@@ -216,7 +216,7 @@ ets_tab() ->
handle_call({save, Key, Res}, _From, State) ->
{reply, save(Key, Res), State};
handle_call(_Request, _From, State) ->
- {reply, {error, undefined_call}, State}.
+ {noreply, State}.
%%--------------------------------------------------------------------
%% @private