HAOUAS Elyes has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/37563 )
Change subject: lib/b64_decode: Fix typo ......................................................................
lib/b64_decode: Fix typo
Change-Id: Ia1da6637cfca5ddbd0879ea271bc68bb881b92e3 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M src/lib/b64_decode.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/63/37563/1
diff --git a/src/lib/b64_decode.c b/src/lib/b64_decode.c index 696652c..9efa465 100644 --- a/src/lib/b64_decode.c +++ b/src/lib/b64_decode.c @@ -97,7 +97,7 @@ bd.data_size = input_length; bd.input_index = 0;
- while (1) { /* Until input is exausted. */ + while (1) { /* Until input is exhausted. */ int v = get_next_char(&bd);
if (v < 0) {