Skip to content

Commit

Permalink
Fix linting errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevingurney committed Dec 18, 2024
1 parent 8f23362 commit 1915da4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
// specific language governing permissions and limitations
// under the License.

#include "arrow/io/file.h"
#include "arrow/matlab/io/ipc/proxy/record_batch_stream_reader.h"
#include "arrow/io/file.h"
#include "arrow/matlab/error/error.h"
#include "arrow/matlab/tabular/proxy/record_batch.h"
#include "arrow/matlab/tabular/proxy/schema.h"
Expand Down Expand Up @@ -106,7 +106,7 @@ void RecordBatchStreamReader::readRecordBatch(
if (!nextRecordBatch) {
context.error =
Error{error::IPC_END_OF_STREAM,
"Reached end of Arrow IPC Stream. No more record batches to read."};
"Reached end of Arrow IPC Stream. No more record batches to read."};
return;
}
auto record_batch_proxy = std::make_shared<RecordBatchProxy>(nextRecordBatch);
Expand Down

0 comments on commit 1915da4

Please sign in to comment.