From 0b3c540b4ff5841c29963409b6d26dbcbadedc04 Mon Sep 17 00:00:00 2001 From: Marty Kraimer Date: Mon, 28 Feb 2000 15:41:14 +0000 Subject: [PATCH] remove return --- src/libCom/osi/osiThread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libCom/osi/osiThread.h b/src/libCom/osi/osiThread.h index 11a847215..e74bf8a26 100644 --- a/src/libCom/osi/osiThread.h +++ b/src/libCom/osi/osiThread.h @@ -121,7 +121,7 @@ inline void osiThread::resume () inline void osiThread::getName (char *name, size_t size) const { - return threadGetName (this->id, name, size); + threadGetName (this->id, name, size); } inline unsigned osiThread::getPriority () const