Re: [OMPI devel] [OMPI svn] svn:open-mpi r14789

2007-05-29 Thread Anya Tatashina
good :) thank you, Anya Ralph Castain wrote: My apologies - I reviewed the opal code and see that it wasn't what I remembered. The objection here is that strncmp returns an int, not a pointer, and hence the NULL is bothering the compiler. I'll submit the fix Thanks Ralph On 5/29/07 11:56

Re: [OMPI devel] [OMPI svn] svn:open-mpi r14789

2007-05-29 Thread Ralph Castain
My apologies - I reviewed the opal code and see that it wasn't what I remembered. The objection here is that strncmp returns an int, not a pointer, and hence the NULL is bothering the compiler. I'll submit the fix Thanks Ralph On 5/29/07 11:56 AM, "Ralph Castain" wrote: > Hmmm...well, this o

Re: [OMPI devel] [OMPI svn] svn:open-mpi r14789

2007-05-29 Thread Ralph Castain
Hmmm...well, this operation if ( NULL == strncmp(appctx->app, OPAL_PATH_SEP, 1 )) { is not a legal one since OPAL_PATH_SEP is a character and not a NULL-terminated string and thus generates the following warning: totalview.c: In function 'orte_totalview_init_after_spawn': totalview.c:412: war