1
1

Remove a compiler warning about missing braces around

initializer.

This commit was SVN r21760.
Этот коммит содержится в:
George Bosilca 2009-08-04 21:41:14 +00:00
родитель 3eb2a3141a
Коммит 98bdf5d17b
2 изменённых файлов: 3 добавлений и 3 удалений
ompi/mca

Просмотреть файл

@ -29,7 +29,7 @@
#include "opal/mca/base/base.h"
int mca_bml_base_already_opened = 0;
opal_list_t mca_bml_base_components_available = {0};
opal_list_t mca_bml_base_components_available = {{0}};
#if OPAL_ENABLE_DEBUG_RELIABILITY
double mca_bml_base_error_rate_floor;

Просмотреть файл

@ -24,8 +24,8 @@
* If you wonder why these 2 freelists are declared here read the comment
* in the pml_base_request.h file.
*/
ompi_free_list_t mca_pml_base_send_requests = {0};
ompi_free_list_t mca_pml_base_recv_requests = {0};
ompi_free_list_t mca_pml_base_send_requests = {{{0}}};
ompi_free_list_t mca_pml_base_recv_requests = {{{0}}};
static void mca_pml_base_request_construct(mca_pml_base_request_t* req)
{