Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
distraction
authorcherierm <cherierm@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Thu, 25 Oct 2007 12:48:06 +0000 (12:48 +0000)
committercherierm <cherierm@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Thu, 25 Oct 2007 12:48:06 +0000 (12:48 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@4870 48e7efb5-ca39-0410-a469-dd3cf9ba447f

src/xbt/xbt_os_thread.c

index 45aa0fe..77d1eca 100644 (file)
@@ -558,7 +558,7 @@ void
 xbt_os_sem_get_value(xbt_os_sem_t sem, int* svalue)
 {
        if(!sem)
-               THROW0(arg_error,EINVAL,"Cannot get the value of the NULL semaphore",);
+               THROW0(arg_error,EINVAL,"Cannot get the value of the NULL semaphore");
 
        #ifndef HAVE_SEM_WAIT
        if(sem_getvalue((sem->s),svalue) < 0)