Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
emkornfield authored and pitrou committed Jul 2, 2019
1 parent 8f011b3 commit 4586fd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/arrow/compute/kernels/cast.cc
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
if (ARROW_PREDICT_FALSE(!_s.ok())) { \
std::stringstream ss; \
ss << __FILE__ << ":" << __LINE__ << " code: " << #s << "\n" << _s.message(); \
ctx->SetStatus(Status(_s.code(), ss.str()), s.detail()); \
ctx->SetStatus(Status(_s.code(), ss.str(), s.detail())); \
return; \
} \
} while (0)
Expand Down

0 comments on commit 4586fd1

Please sign in to comment.