Skip to content

Commit

Permalink
[CodeClean] fix typo
Browse files Browse the repository at this point in the history
Code clean, fix typo in internal header file.

Signed-off-by: Jaeyun Jung <jy1210.jung@samsung.com>
  • Loading branch information
jaeyun-jung committed Sep 2, 2024
1 parent 9bd6d7a commit ff1176c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions c/src/ml-api-internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -372,15 +372,15 @@ void _ml_error_report_ (const char *fmt, ...);
void _ml_error_report_continue_ (const char *fmt, ...);

/**
* @brief Private macro for error repoting infra. Don't use.
* @brief Private macro for error reporting infra. Don't use.
*/
#define _ml_error_report_return_(errno, ...) do { \
_ml_error_report_ (__VA_ARGS__); \
return errno; \
} while(0)

/**
* @brief Private macro for error repoting infra. Don't use.
* @brief Private macro for error reporting infra. Don't use.
*/
#define _ml_error_report_return_continue_(errno, ...) do { \
_ml_error_report_continue_ (__VA_ARGS__); \
Expand Down

0 comments on commit ff1176c

Please sign in to comment.