]> AND Public Git Repository - simgrid.git/blobdiff - src/xbt/log_private.h
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Try to fix #8852 (SimGrid won't compile on Ubuntu 9.10) by betterly checking my argum...
[simgrid.git] / src / xbt / log_private.h
index 38533a1eef96c6f12d46a3f879fb94d2edcb322f..1680b5956db6eb6569b9d3dfd38c886c44463da5 100644 (file)
 
 #include "xbt/log.h"
 struct xbt_log_appender_s {
-  void (*do_append) (xbt_log_appender_t this_appender,
-                    char *event);
+  void (*do_append) (xbt_log_appender_t this_appender, char *event);
   void (*free_) (xbt_log_appender_t this_);
   void *data;
 };
 
 struct xbt_log_layout_s {
-  void (*do_layout)(xbt_log_layout_t l,
-                   xbt_log_event_t event, const char *fmt,
-                   xbt_log_appender_t appender);
+  void (*do_layout) (xbt_log_layout_t l,
+                     xbt_log_event_t event, const char *fmt,
+                     xbt_log_appender_t appender);
   void (*free_) (xbt_log_layout_t l);
   void *data;
-} ;
+};
 
 
 /**
- * \ingroup XBT_log_implem  
+ * \ingroup XBT_log_implem
  * \param cat the category (not only its name, but the variable)
  * \param parent the parent cat
  *
  * Programatically alter a category's parent (don't use).
  */
 XBT_PUBLIC(void) xbt_log_parent_set(xbt_log_category_t cat,
-                                   xbt_log_category_t parent);
+                                    xbt_log_category_t parent);
 
 
 #endif /* LOG_PRIVATE_H */