Skip to content

Commit

Permalink
Merge pull request #1283 from AntelopeIO/bsd-13-2-build-fix
Browse files Browse the repository at this point in the history
Fix for a build on FreeBSD 13.2
  • Loading branch information
vladtr authored Jun 15, 2023
2 parents 24ac4cf + e809eec commit 294997d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/libfc/src/log/logger_config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ namespace fc {
}
#else
static int thread_count = 0;
thread_name = std::string( "thread-" ) + fc::to_string( thread_count++ );
thread_name = std::string( "thread-" ) + std::to_string( thread_count++ );
#endif
}
return thread_name;
Expand Down

0 comments on commit 294997d

Please sign in to comment.