Skip to content

Commit e7e53b3

Browse files
committed
Fix unused variable warning in erlang:binary_to_integer/2
Signed-off-by: Jakub Gonet <jakub.gonet@swmansion.com>
1 parent 24084c5 commit e7e53b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/estdlib/src/erlang.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,7 @@ binary_to_integer(_Binary) ->
673673
%% @end
674674
%%-----------------------------------------------------------------------------
675675
-spec binary_to_integer(Binary :: binary(), Base :: 2..36) -> integer().
676-
binary_to_integer(_Binary, Base) ->
676+
binary_to_integer(_Binary, _Base) ->
677677
erlang:nif_error(undefined).
678678

679679
%%-----------------------------------------------------------------------------

0 commit comments

Comments
 (0)