1
1

Indent and fix some uninitialized variables.

This commit was SVN r23179.
Этот коммит содержится в:
George Bosilca 2010-05-19 21:20:33 +00:00
родитель c51932c250
Коммит b56ab33ff6

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

@ -607,7 +607,7 @@ int mca_btl_tcp_proc_insert( mca_btl_tcp_proc_t* btl_proc,
} }
} else { } else {
enum mca_btl_tcp_connection_quality max; enum mca_btl_tcp_connection_quality max;
int i_max, j_max; int i_max = 0, j_max = 0;
/* Find the best connection that is not in use. Save away /* Find the best connection that is not in use. Save away
* the indices of the best location. */ * the indices of the best location. */
max = CQ_NO_CONNECTION; max = CQ_NO_CONNECTION;