Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Typo + kill useless empty lines.
authorArnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Tue, 27 Nov 2012 14:52:55 +0000 (15:52 +0100)
committerArnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Tue, 27 Nov 2012 15:15:42 +0000 (16:15 +0100)
buildtools/Cmake/CompleteInFiles.cmake
src/xbt/xbt_main.c

index 9cabdc4..4efb7e8 100644 (file)
@@ -52,7 +52,7 @@ ELSEIF(CMAKE_SYSTEM_PROCESSOR MATCHES "^s390")
 ELSEIF(CMAKE_SYSTEM_PROCESSOR MATCHES "^sh")
   message(STATUS "System processor: sh")
 
-ELSE() #PROCESSOR NOT fIND
+ELSE() #PROCESSOR NOT FOUND
   message(STATUS "PROCESSOR NOT FOUND: ${CMAKE_SYSTEM_PROCESSOR}")
 
 ENDIF()
index 3b453c6..653546a 100644 (file)
@@ -89,30 +89,22 @@ static void xbt_preinit(void)
   mmalloc_preinit();
 #endif
   xbt_log_preinit();
-
   xbt_backtrace_preinit();
   xbt_os_thread_mod_preinit();
   xbt_fifo_preinit();
   xbt_dict_preinit();
-
   atexit(xbt_postexit);
 }
 
 static void xbt_postexit(void)
 {
   xbt_backtrace_postexit();
-
   xbt_fifo_postexit();
   xbt_dict_postexit();
-
   xbt_os_thread_mod_postexit();
-
   xbt_dynar_free(&xbt_cmdline);
-
   xbt_log_postexit();
-
   free(xbt_binary_name);
-
 #ifdef MMALLOC_WANT_OVERRIDE_LEGACY
   mmalloc_postexit();
 #endif