From 84a5e78f2a41b7d68fc5126c4f58b143757542e9 Mon Sep 17 00:00:00 2001 From: mquinson Date: Sun, 29 Apr 2007 11:35:10 +0000 Subject: [PATCH] further cleanups git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@3467 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- include/xbt/log.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/xbt/log.h b/include/xbt/log.h index 3d8eba3629..8bff5c9bb8 100644 --- a/include/xbt/log.h +++ b/include/xbt/log.h @@ -293,8 +293,8 @@ XBT_PUBLIC(void) _xbt_log_event_log(xbt_log_event_t ev, const char *fmt, ...) _XBT_GNUC_PRINTF(2,3); -XBT_PUBLIC(int) _xbt_log_cat_init(e_xbt_log_priority_t priority, - xbt_log_category_t category); +XBT_PUBLIC(int) _xbt_log_cat_init(xbt_log_category_t category, + e_xbt_log_priority_t priority); extern XBT_IMPORT_NO_EXPORT(s_xbt_log_category_t) _XBT_LOGV(XBT_LOG_ROOT_CAT); @@ -328,7 +328,7 @@ extern xbt_log_appender_t xbt_log_default_appender; (priority >= XBT_LOG_STATIC_THRESHOLD \ && priority >= catv.threshold \ && (catv.threshold != xbt_log_priority_uninitialized \ - || _xbt_log_cat_init(priority, &catv)) ) + || _xbt_log_cat_init(&catv, priority)) ) /* * Internal Macros -- 2.20.1