From: Martin Quinson Date: Wed, 2 Nov 2011 00:36:43 +0000 (+0100) Subject: typos X-Git-Tag: exp_20120216~530 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/dc6913c52605e309e5bbbf3bcccec1e15a1ae03b typos --- diff --git a/src/surf/surf_private.h b/src/surf/surf_private.h index c935e72cc5..806c3fdf8f 100644 --- a/src/surf/surf_private.h +++ b/src/surf/surf_private.h @@ -138,7 +138,7 @@ typedef struct s_route_extended { /* This enum used in the routing structure helps knowing in which situation we are. */ typedef enum { - SURF_ROUTING_NULL = 0, /**< Indefined type */ + SURF_ROUTING_NULL = 0, /**< Undefined type */ SURF_ROUTING_BASE, /**< Base case: use simple link lists for routing */ SURF_ROUTING_RECURSIVE /**< Recursive case: also return gateway informations */ } e_surf_routing_hierarchy_t; diff --git a/src/surf/surf_routing.c b/src/surf/surf_routing.c index ad6e304372..583028ea24 100644 --- a/src/surf/surf_routing.c +++ b/src/surf/surf_routing.c @@ -501,7 +501,7 @@ void routing_AS_end(const char *AS_id) { if (current_routing == NULL) { - THROWF(arg_error, 0, "Close AS(%s), that never open", AS_id); + THROWF(arg_error, 0, "Close AS(%s), that were never opened", AS_id); } else { network_element_info_t info = NULL; xbt_assert(!xbt_lib_get_or_null(as_router_lib,current_routing->name, ROUTING_ASR_LEVEL),