1
1

Remove a warning about the send_fifo uninitialized usage. (It cannot happend but I have to see warnings from the compiler :) ).

This commit was SVN r4141.
Этот коммит содержится в:
George Bosilca 2005-01-26 00:18:19 +00:00
родитель 42b0b93d6a
Коммит 251ff57504

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

@ -360,7 +360,7 @@ int mca_ptl_sm_component_progress(mca_ptl_tstamp_t tstamp)
int my_local_smp_rank, proc; int my_local_smp_rank, proc;
unsigned int peer_local_smp_rank ; unsigned int peer_local_smp_rank ;
mca_ptl_sm_frag_t *header_ptr; mca_ptl_sm_frag_t *header_ptr;
ompi_fifo_t *send_fifo; ompi_fifo_t *send_fifo = NULL;
bool frag_matched; bool frag_matched;
mca_ptl_base_match_header_t *matching_header; mca_ptl_base_match_header_t *matching_header;
mca_pml_base_send_request_t *base_send_req; mca_pml_base_send_request_t *base_send_req;