summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
Diffstat (limited to 'util')
-rw-r--r--util/cbfstool/common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/cbfstool/common.h b/util/cbfstool/common.h
index 498aae69c2..88d5238fce 100644
--- a/util/cbfstool/common.h
+++ b/util/cbfstool/common.h
@@ -148,14 +148,14 @@ uint32_t string_to_arch(const char *arch_string);
/* Compress in_len bytes from in, storing the result at out, returning the
* resulting length in out_len.
- * Returns 0 on error,
+ * Returns 0 on success,
* != 0 otherwise, depending on the compressing function.
*/
typedef int (*comp_func_ptr) (char *in, int in_len, char *out, int *out_len);
/* Decompress in_len bytes from in, storing the result at out, up to out_len
* bytes.
- * Returns 0 on error,
+ * Returns 0 on success,
* != 0 otherwise, depending on the decompressing function.
*/
typedef int (*decomp_func_ptr) (char *in, int in_len, char *out, int out_len,