Skip to content
This repository has been archived by the owner on Jun 26, 2024. It is now read-only.

Commit

Permalink
Fix indent
Browse files Browse the repository at this point in the history
  • Loading branch information
Kazuhiro Ogura committed May 31, 2013
1 parent a0b4f90 commit 3719d4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/erlaws_util.erl
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ url_encode_char([X | T], Acc) when X == $-; X == $_; X == $. ->
% url_encode_char(T, [$+ | Acc]);
url_encode_char([X | T], Acc) ->
url_encode_char(T, [$%, d2h(X bsr 4), d2h(X band 16#0f) | Acc]);
url_encode_char([], Acc) ->
Acc.
url_encode_char([], Acc) ->
Acc.

d2h(N) when N<10 -> N+$0;
% Commented out to strictly comply with AWS requirement -- goura
Expand Down

0 comments on commit 3719d4a

Please sign in to comment.