Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cosmetics and fix ugly bug in windows code
[simgrid.git] / src / xbt / xbt_os_thread.c
index 2e9e91f..d07112d 100644 (file)
@@ -722,9 +722,9 @@ xbt_os_thread_t xbt_os_thread_create(const char *name,
   return t;
 }
 
-void xbt_os_thread_setstacksize(int stack_size)
+void xbt_os_thread_setstacksize(int size)
 {
-  stack_size=stack_size;
+  stack_size = size;
 }
 
 const char *xbt_os_thread_name(xbt_os_thread_t t)