From 40232f4bd4d7e8e001f7d1e8f120606f59b2c147 Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Fri, 27 Sep 2019 18:15:40 +0200 Subject: Cleanup: replace fixed with data types with typedefs This is a fully automated search and replace, i.e. I ran this: git grep -l uint8_t | xargs sed -i 's/uint8_t/sqfs_u8/g' git grep -l uint16_t | xargs sed -i 's/uint16_t/sqfs_u16/g' git grep -l uint32_t | xargs sed -i 's/uint32_t/sqfs_u32/g' git grep -l uint64_t | xargs sed -i 's/uint64_t/sqfs_u64/g' git grep -l int8_t | xargs sed -i 's/int8_t/sqfs_s8/g' git grep -l int16_t | xargs sed -i 's/int16_t/sqfs_s16/g' git grep -l int32_t | xargs sed -i 's/int32_t/sqfs_s32/g' git grep -l int64_t | xargs sed -i 's/int64_t/sqfs_s64/g' and than added the appropriate definitions to sqfs/predef.h The whole point being better compatibillity with platforms that may not have an stdint.h with the propper definitions. Signed-off-by: David Oberhollenzer --- lib/tar/base64.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/tar/base64.c') diff --git a/lib/tar/base64.c b/lib/tar/base64.c index edb2d61..0ccf3c4 100644 --- a/lib/tar/base64.c +++ b/lib/tar/base64.c @@ -8,7 +8,7 @@ #include "internal.h" -static uint8_t convert(char in) +static sqfs_u8 convert(char in) { if (isupper(in)) return in - 'A'; @@ -23,7 +23,7 @@ static uint8_t convert(char in) return 0; } -void base64_decode(uint8_t *out, const char *in) +void base64_decode(sqfs_u8 *out, const char *in) { char temp[4]; -- cgit v1.2.3