diff options
author | Tobias Brunner <tobias@strongswan.org> | 2011-10-17 13:46:53 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2011-10-17 13:51:48 +0200 |
commit | 778ef77d61d162d87deffd552f27d852b6dfb3f3 (patch) | |
tree | 1ae7d3002af1940281ad5f2c15462222c0868c4e /src | |
parent | 7bc24c598f585386cbc8f6808992079751546444 (diff) | |
download | strongswan-778ef77d61d162d87deffd552f27d852b6dfb3f3.tar.bz2 strongswan-778ef77d61d162d87deffd552f27d852b6dfb3f3.tar.xz |
Avoid heaps of compiler warnings due to plugin features registration.
Diffstat (limited to 'src')
-rw-r--r-- | src/libstrongswan/plugins/plugin_feature.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstrongswan/plugins/plugin_feature.h b/src/libstrongswan/plugins/plugin_feature.h index 9d03a1df5..b1500feba 100644 --- a/src/libstrongswan/plugins/plugin_feature.h +++ b/src/libstrongswan/plugins/plugin_feature.h @@ -185,10 +185,10 @@ struct plugin_feature_t { /** FEATURE_REGISTER */ struct { - /** feature specific function to register for this type */ - void *f; /** final flag to pass for builder_function_t */ bool final; + /** feature specific function to register for this type */ + void *f; } reg; /** FEATURE_CALLBACK */ |