From 0b55fbda3454e3276102d712e46125272479ac63 Mon Sep 17 00:00:00 2001 From: Sebastian Schmidt Date: Tue, 18 Oct 2022 15:29:14 -0700 Subject: [PATCH] Fix compilation error on Windows PiperOrigin-RevId: 482037921 --- mediapipe/calculators/tflite/tflite_model_calculator.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mediapipe/calculators/tflite/tflite_model_calculator.cc b/mediapipe/calculators/tflite/tflite_model_calculator.cc index 8cbdd4c74..891a9f731 100644 --- a/mediapipe/calculators/tflite/tflite_model_calculator.cc +++ b/mediapipe/calculators/tflite/tflite_model_calculator.cc @@ -93,7 +93,7 @@ class TfLiteModelCalculator : public CalculatorBase { std::move(model_allocation), tflite::DefaultErrorReporter()); #else return absl::FailedPreconditionError( - "Loading by file descriptor is not supported on this platform.") + "Loading by file descriptor is not supported on this platform."); #endif }