X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ec3be75f932849aab240103afd8fa782cff77b0e..53cde8dfb94134348e908b3c2845200ffc582dc7:/src/xbt/datadesc/cbps.c diff --git a/src/xbt/datadesc/cbps.c b/src/xbt/datadesc/cbps.c index b397268d9a..2810ac3815 100644 --- a/src/xbt/datadesc/cbps.c +++ b/src/xbt/datadesc/cbps.c @@ -378,7 +378,7 @@ void xbt_datadesc_cb_push_uint_mult(xbt_datadesc_type_t ignored, unsigned int old = *(unsigned int *) data; unsigned int new = xbt_cbps_i_pop(vars); - XBT_DEBUG("push %d x %d as a size", old, new); + XBT_DEBUG("push %u x %u as a size", old, new); xbt_cbps_i_push(vars, (int) (old * new)); } @@ -400,6 +400,6 @@ void xbt_datadesc_cb_push_ulint_mult(xbt_datadesc_type_t ignored, unsigned long int old = *(unsigned long int *) data; unsigned long int new = xbt_cbps_i_pop(vars); - XBT_DEBUG("push %ld x %ld as a size", old, new); + XBT_DEBUG("push %lu x %lu as a size", old, new); xbt_cbps_i_push(vars, (int) (old * new)); }