diff options
Diffstat (limited to 'lib/stdlib/src/ets.erl')
| -rw-r--r-- | lib/stdlib/src/ets.erl | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/stdlib/src/ets.erl b/lib/stdlib/src/ets.erl index 61bb038737..77c8029f59 100644 --- a/lib/stdlib/src/ets.erl +++ b/lib/stdlib/src/ets.erl @@ -1,7 +1,7 @@  %%  %% %CopyrightBegin%  %% -%% Copyright Ericsson AB 1996-2012. All Rights Reserved. +%% Copyright Ericsson AB 1996-2013. All Rights Reserved.  %%  %% The contents of this file are subject to the Erlang Public License,  %% Version 1.1, (the "License"); you may not use this file except in @@ -501,7 +501,7 @@ fun2ms(ShellFun) when is_function(ShellFun) ->              case ms_transform:transform_from_shell(                     ?MODULE,Clauses,ImportList) of                  {error,[{_,[{_,_,Code}|_]}|_],_} -> -                    io:format("Error: ~s~n", +                    io:format("Error: ~ts~n",                                [ms_transform:format_error(Code)]),                      {error,transform_error};                  Else -> @@ -1586,7 +1586,7 @@ choice(Height, Width, P, Mode, Tab, Key, Turn, Opos) ->  		{ok,Re} ->  		    re_search(Height, Width, Tab, ets:first(Tab), Re, 1, 1);  		{error,{ErrorString,_Pos}} -> -		    io:format("~s\n", [ErrorString]), +		    io:format("~ts\n", [ErrorString]),  		    choice(Height, Width, P, Mode, Tab, Key, Turn, Opos)  	    end;  	_  ->  | 
