From b0f4da1072a44ed6d9abb376e193b5d010a41ad4 Mon Sep 17 00:00:00 2001 From: Hardik Sharma Date: Mon, 18 Nov 2024 13:47:55 -0800 Subject: [PATCH] Fix error message. Summary: Remove extra whitespace in from error message. ``` Cannot override the -> Cannot override the ``` Differential Revision: D66105238 --- runtime/executor/method.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/executor/method.cpp b/runtime/executor/method.cpp index 4208cf36c55..eb0a8c8bb6a 100644 --- a/runtime/executor/method.cpp +++ b/runtime/executor/method.cpp @@ -963,8 +963,8 @@ Method::set_output_data_ptr(void* buffer, size_t size, size_t output_idx) { if (tensor_meta->is_memory_planned()) { ET_LOG( Error, - "Output %zu is memory planned, or is a constant. Cannot override \ - the existing data pointer.", + "Output %zu is memory planned, or is a constant. Cannot override " + "the existing data pointer.", output_idx); return Error::InvalidState; }