Message ID | 1422376802-32161-1-git-send-email-ilyan@dev.mellanox.co.il (mailing list archive) |
---|---|
State | Accepted |
Delegated to: | Hal Rosenstock |
Headers | show |
On 1/27/2015 11:40 AM, Ilya Nelkenbaum wrote: > From: Ilya Nelkenbaum <ilyan@mellanox.com> > > SM event plugin structure initialization was modified > to be alligned with C89 standard. > > Signed-off-by: Ilya Nelkenbaum <ilyan@mellanox.com> Thanks. Applied. -- Hal -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
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 };