From: Ilya Nelkenbaum <[email protected]> SM event plugin structure initialization was modified to be alligned with C89 standard.
Signed-off-by: Ilya Nelkenbaum <[email protected]> --- osmeventplugin/src/osmeventplugin.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/osmeventplugin/src/osmeventplugin.c b/osmeventplugin/src/osmeventplugin.c index d7975a3..cba69ea 100644 --- a/osmeventplugin/src/osmeventplugin.c +++ b/osmeventplugin/src/osmeventplugin.c @@ -227,8 +227,8 @@ static void report(void *_log, osm_epi_event_id_t event_id, void *event_data) #endif osm_event_plugin_t osm_event_plugin = { - osm_version:OSM_VERSION, - create:construct, - delete:destroy, - report:report + OSM_VERSION, + construct, + destroy, + report }; -- 1.8.3.4 -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
