Skip to content

Commit 148002e

Browse files
committed
Merge pull request #1360 from jakub-gonet/jgonet/fix-warning
Fix unused variable warning in erlang:binary_to_integer/2 These changes are made under both the "Apache 2.0" and the "GNU Lesser General Public License 2.1 or later" license terms (dual license). SPDX-License-Identifier: Apache-2.0 OR LGPL-2.1-or-later
2 parents 43e770b + e7e53b3 commit 148002e

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)