Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
reindent (with eclipse)
[simgrid.git] / src / xbt / asserts.c
index f312dda..dd1a301 100644 (file)
 
 XBT_LOG_EXTERNAL_CATEGORY(xbt);
 XBT_LOG_DEFAULT_CATEGORY(xbt);
-  
+
 /**
- * @brief Kill the program with an error message 
- * \param msg 
+ * @brief Kill the program with an error message
+ * \param msg
  *
  * Things are so messed up that the only thing to do now, is to stop the program.
  *
@@ -24,11 +24,11 @@ XBT_LOG_DEFAULT_CATEGORY(xbt);
  * If you want to pass arguments to the format, you can always write xbt_assert1(0,"fmt",args)
  */
 void xbt_die (const char *msg) {
-   CRITICAL1("%s",msg);
-   xbt_abort();
+  CRITICAL1("%s",msg);
+  xbt_abort();
 }
 
 /** @brief Kill the program in silence */
 void xbt_abort(void) {
-   abort();
+  abort();
 }