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) {
Hello build bot (Jenkins),
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/37563
to look at the new patch set (#2).
Change subject: src/lib: Fix typos ......................................................................
src/lib: Fix typos
Change-Id: Ia1da6637cfca5ddbd0879ea271bc68bb881b92e3 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M src/lib/b64_decode.c M src/lib/bootmem.c 2 files changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/63/37563/2
Angel Pons has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/37563 )
Change subject: src/lib: Fix typos ......................................................................
Patch Set 3: Code-Review+2
Kyösti Mälkki has submitted this change. ( https://review.coreboot.org/c/coreboot/+/37563 )
Change subject: src/lib: Fix typos ......................................................................
src/lib: Fix typos
Change-Id: Ia1da6637cfca5ddbd0879ea271bc68bb881b92e3 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr Reviewed-on: https://review.coreboot.org/c/coreboot/+/37563 Reviewed-by: Angel Pons th3fanbus@gmail.com Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M src/lib/b64_decode.c M src/lib/bootmem.c 2 files changed, 2 insertions(+), 2 deletions(-)
Approvals: build bot (Jenkins): Verified Angel Pons: Looks good to me, approved
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) { diff --git a/src/lib/bootmem.c b/src/lib/bootmem.c index 8ca3bbd..0397594 100644 --- a/src/lib/bootmem.c +++ b/src/lib/bootmem.c @@ -274,7 +274,7 @@ end = max_addr; begin = end - size;
- /* Mark buffer as unusuable for future buffer use. */ + /* Mark buffer as unusable for future buffer use. */ bootmem_add_range(begin, size, BM_MEM_PAYLOAD);
return (void *)(uintptr_t)begin;
Paul Menzel has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/37563 )
Change subject: src/lib: Fix typos ......................................................................
Patch Set 6: Code-Review+1