From 2dd3bafb0c21d7f49fcc2945836924d9c052d268 Mon Sep 17 00:00:00 2001 From: Naoto Yamaguchi Date: Thu, 28 Jul 2022 05:31:46 +0900 Subject: Fix installation README spdx typo issue Fix to external header is not installing. Fix to algorithm description. Fix to SPDX-License-Identifier in mock header. Fix to some typo. Bug-AGL: SPEC-4500 Change-Id: Ica9d32601d26243a8c4361c290e0bc853fa43ec4 Signed-off-by: Naoto Yamaguchi --- lib/libredundancyfileop.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/libredundancyfileop.c b/lib/libredundancyfileop.c index 2a0dc87..cf545cb 100644 --- a/lib/libredundancyfileop.c +++ b/lib/libredundancyfileop.c @@ -169,7 +169,7 @@ refop_error_t refop_set_redundancy_data(refop_handle_t handle, uint8_t *data, in * @retval REFOP_SUCCESS This operation was succeeded. * @retval REFOP_RECOVER This operation was succeeded within recovery. * @retval REFOP_NOENT The target file/directroy was nothing. - * @retval REFOP_BROAKEN This operation was failed. Because all recovery method was failed. + * @retval REFOP_BROKEN This operation was failed. Because all recovery method was failed. * @retval REFOP_ARGERROR Argument error. * @retval REFOP_SYSERROR Internal operation was failed such as no memory, no disk space and etc. */ @@ -190,7 +190,7 @@ refop_error_t refop_get_redundancy_data(refop_handle_t handle, uint8_t *data, in else if (ret == -2) result = REFOP_NOENT; else if (ret == -3) - result = REFOP_BROAKEN; + result = REFOP_BROKEN; else result = REFOP_SYSERROR; -- cgit