From bad37c9f86d4932e80abbca3757fac80660b5b05 Mon Sep 17 00:00:00 2001 From: pini Date: Tue, 1 Mar 2011 16:45:35 +0000 Subject: [PATCH] Missing semicolon git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@9747 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- src/surf/surf_routing.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.20.1