Skip to content

Commit

Permalink
[native] Terminate Velox macro calls with semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
zuyu committed Sep 19, 2024
1 parent 52081ac commit b7e3c26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion presto-native-execution/presto_cpp/main/PrestoServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,7 @@ void PrestoServer::initializeThreadPools() {
#ifdef __linux__
threadFactory = std::make_shared<BatchThreadFactory>("Driver");
#else
VELOX_FAIL("Batch scheduling policy can only be enabled on Linux")
VELOX_FAIL("Batch scheduling policy can only be enabled on Linux");
#endif
} else {
threadFactory = std::make_shared<folly::NamedThreadFactory>("Driver");
Expand Down

0 comments on commit b7e3c26

Please sign in to comment.