X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1fda4cc79d808bb4ca659d056c5e67be99ce47ca..0ca1291c2f63ca6235f4b4885c48413a900aade4:/src/xbt/xbt_peer.c diff --git a/src/xbt/xbt_peer.c b/src/xbt/xbt_peer.c index a4625888eb..23d7ca4911 100644 --- a/src/xbt/xbt_peer.c +++ b/src/xbt/xbt_peer.c @@ -32,7 +32,7 @@ xbt_peer_t xbt_peer_from_string(const char *peerport) xbt_peer_t res = xbt_new(s_xbt_peer_t, 1); char *name = xbt_strdup(peerport); char *port_str = strchr(name, ':'); - xbt_assert1(port_str, + xbt_assert(port_str, "argument of xbt_peer_from_string should be of form :, it's '%s'", peerport); *port_str = '\0';