Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
type callbacks now get the typedesc they operate on as argument
[simgrid.git] / src / gras / DataDesc / datadesc.c
index c16f8e2..dcb8b9e 100644 (file)
@@ -18,7 +18,7 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(datadesc,gras,"Data description");
 
 /* callback for array size when sending strings */
 static int
-_strlen_cb(/*@unused@*/gras_cbps_t vars, void *data) {
+_strlen_cb(/*@unused@*/gras_datadesc_type_t type,/*@unused@*/gras_cbps_t vars, void *data) {
 
   return 1+(int)strlen(data);
 }