Skip to content

Commit fa21ab9

Browse files
committed
Renamed absl errors to be consistent with other error codes
1 parent d7e1668 commit fa21ab9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tensorflow_lite_support/c/common.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,11 +176,11 @@ enum TfLiteSupportErrorCode {
176176

177177
// kNotFound indicates some requested entity (such as a file or directory)
178178
// was not found.
179-
kNotFound = 900,
179+
kNotFoundError = 900,
180180
// kInternal indicates an internal error has occurred
181181
// and some invariants expected by the underlying system have not been
182182
// satisfied. This error code is reserved for serious errors.
183-
kInternal,
183+
kInternalError,
184184

185185
};
186186

0 commit comments

Comments
 (0)