aboutsummaryrefslogtreecommitdiffstats
path: root/lib/libredundancyfileop.c
diff options
context:
space:
mode:
authorNaoto Yamaguchi <naoto.yamaguchi@aisin.co.jp>2022-07-28 05:31:46 +0900
committerNaoto Yamaguchi <naoto.yamaguchi@aisin.co.jp>2022-08-05 05:51:47 +0900
commit2dd3bafb0c21d7f49fcc2945836924d9c052d268 (patch)
tree1057ed2a17cf7f29a59a67203b3ef22e603548aa /lib/libredundancyfileop.c
parent1f38adbce45b76edb55d37617c00b42749b65726 (diff)
Fix installation README spdx typo issueneedlefish_13.93.0needlefish/13.93.013.93.0
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 <naoto.yamaguchi@aisin.co.jp>
Diffstat (limited to 'lib/libredundancyfileop.c')
-rw-r--r--lib/libredundancyfileop.c4
1 files changed, 2 insertions, 2 deletions
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;