File diff r25654:e264fd698eb2 → r25655:1030dcb7eb52
src/thread.h
Show inline comments
 
@@ -66,7 +66,7 @@ inline bool StartNewThread(std::thread *
 
		return true;
 
	} catch (const std::system_error& e) {
 
		/* Something went wrong, the system we are running on might not support threads. */
 
		DEBUG(misc, 1, "Can't create thread '%s': %s", name, e.what());
 
		Debug(misc, 1, "Can't create thread '{}': {}", name, e.what());
 
	}
 
#endif