osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/onomondo-eim/+/42903?usp=email )
Change subject: src/utils.erl: format with erlfmt ......................................................................
src/utils.erl: format with erlfmt
Keep the file consistent with the rest of the codebase by running 'rebar3 fmt -w' on it.
Change-Id: I806c912a1bc82c26ecd23759a927f22328e743b9 --- M src/utils.erl 1 file changed, 9 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/onomondo-eim refs/changes/03/42903/1
diff --git a/src/utils.erl b/src/utils.erl index d46dc2a..cbe0bf4 100644 --- a/src/utils.erl +++ b/src/utils.erl @@ -5,8 +5,15 @@ % Author: Philipp Maier pmaier@sysmocom.de / sysmocom - s.f.m.c. GmbH
-module(utils). --export([binary_to_hex/1, hex_to_binary/1, join_binary_list/1, integer_to_bytes/1, lpad_binary/3, - get_priv_file_path/2, get_env_priv_file_path/2]). +-export([ + binary_to_hex/1, + hex_to_binary/1, + join_binary_list/1, + integer_to_bytes/1, + lpad_binary/3, + get_priv_file_path/2, + get_env_priv_file_path/2 +]).
% Converts a single hex digit (e.g. <<"A">>) into its integer representation. hexstr_digit_to_int(HexDigit) ->