1
1

Silence a trivial compiler warnings (pgcc).

This commit was SVN r19810.
Этот коммит содержится в:
Jeff Squyres 2008-10-27 14:23:02 +00:00
родитель c078ab6b09
Коммит b11d13cc05

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

@ -169,9 +169,11 @@ static void dump(void)
MPIR_proctable[i].pid); MPIR_proctable[i].pid);
} }
fprintf(stderr, "MPIR_executable_path: %s\n", fprintf(stderr, "MPIR_executable_path: %s\n",
('\0' == MPIR_executable_path[0]) ? "NULL" : MPIR_executable_path); ('\0' == MPIR_executable_path[0]) ?
"NULL" : (char*) MPIR_executable_path);
fprintf(stderr, "MPIR_server_arguments: %s\n", fprintf(stderr, "MPIR_server_arguments: %s\n",
('\0' == MPIR_server_arguments[0]) ? "NULL" : MPIR_server_arguments); ('\0' == MPIR_server_arguments[0]) ?
"NULL" : (char*) MPIR_server_arguments);
} }