From: pini Date: Tue, 1 Mar 2011 16:45:35 +0000 (+0000) Subject: Missing semicolon X-Git-Tag: v3.6_beta2~213 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/bad37c9f86d4932e80abbca3757fac80660b5b05 Missing semicolon git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@9747 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/surf/surf_routing.c b/src/surf/surf_routing.c index 30de78ee99..d0940f5cc7 100644 --- a/src/surf/surf_routing.c +++ b/src/surf/surf_routing.c @@ -2632,7 +2632,7 @@ static route_extended_t rulebased_get_route(routing_component_t rc, if (rc_dst >= 0) { res = pcre_get_substring_list(src, ovector_src, rc_src, &list_src); xbt_assert1(!res, "error solving substring list for src \"%s\"", src); - res = pcre_get_substring_list(dst, ovector_dst, rc_dst, &list_dst) + res = pcre_get_substring_list(dst, ovector_dst, rc_dst, &list_dst); xbt_assert1(!res, "error solving substring list for src \"%s\"", dst); char *link_name; xbt_dynar_foreach(ruleroute->re_str_link, cpt, link_name) {