From b66874244711d3ef485be93a55fc269a0b5c096c Mon Sep 17 00:00:00 2001 From: Gleb Popov <6yearold@gmail.com> Date: Fri, 27 Jan 2023 14:26:33 +0300 Subject: [PATCH] Fix typo in the exception message (#3858) --- Foundation/src/Thread_POSIX.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Foundation/src/Thread_POSIX.cpp b/Foundation/src/Thread_POSIX.cpp index 4235ab2f4..613677c1d 100644 --- a/Foundation/src/Thread_POSIX.cpp +++ b/Foundation/src/Thread_POSIX.cpp @@ -75,7 +75,7 @@ namespace #else if (pthread_setname_np(pthread_self(), threadName.c_str())) #endif - throw Poco::SystemException("cannot get thread name"); + throw Poco::SystemException("cannot set thread name"); } std::string getThreadName()