From: Dejan L. <le...@us...> - 2004-06-11 20:27:53
|
Update of /cvsroot/rtk/rtk/rtk In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27313/rtk Modified Files: IO.h Log Message: Small fix in SetMutex() . Index: IO.h =================================================================== RCS file: /cvsroot/rtk/rtk/rtk/IO.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** IO.h 11 Jun 2004 16:55:18 -0000 1.6 --- IO.h 11 Jun 2004 20:27:42 -0000 1.7 *************** *** 116,120 **** /** Sets Mutex object for IO */ ! void SetMutex(const Mutex* arg_mutex) { _mutex = arg_mutex; } /** Gets Mutex object from IO */ --- 116,120 ---- /** Sets Mutex object for IO */ ! void SetMutex(Mutex* arg_mutex) { _mutex = arg_mutex; } /** Gets Mutex object from IO */ |