diff --git a/include/onnxruntime/core/common/common.h b/include/onnxruntime/core/common/common.h index 241d7ed8ee..52062f5fb7 100644 --- a/include/onnxruntime/core/common/common.h +++ b/include/onnxruntime/core/common/common.h @@ -121,7 +121,7 @@ void LogRuntimeError(uint32_t session_id, const common::Status& status, const ch // Check condition. if not met, return status. #define ORT_RETURN_IF_NOT(condition, ...) \ if (!(condition)) { \ - return ORT_MAKE_STATUS(ONNXRUNTIME, FAIL, "Not satsified: " #condition "\n", \ + return ORT_MAKE_STATUS(ONNXRUNTIME, FAIL, "Not satisfied: " #condition "\n", \ ORT_WHERE.ToString(), ::onnxruntime::MakeString(__VA_ARGS__)); \ }