1
1

Fix a format statement to be compatible with all gcc compiler versions

This commit was SVN r20400.
Этот коммит содержится в:
Ralph Castain 2009-02-02 15:47:07 +00:00
родитель 92bb86753a
Коммит 104a0539e3
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -163,7 +163,7 @@ static int hnp_push(const orte_process_name_t* dst_name, orte_iof_tag_t src_tag,
np = np / 10;
}
/* construct the filename */
asprintf(&outfile, "%s.%*0lu", orte_output_filename, numdigs, (unsigned long)proct->name.vpid);
asprintf(&outfile, "%s.%0*lu", orte_output_filename, numdigs, (unsigned long)proct->name.vpid);
/* create the file */
fdout = open(outfile, O_CREAT|O_RDWR|O_TRUNC, 0644);
free(outfile);

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

@ -149,7 +149,7 @@ static int orted_push(const orte_process_name_t* dst_name, orte_iof_tag_t src_ta
np = np / 10;
}
/* construct the filename */
asprintf(&outfile, "%s.%*0lu", orte_output_filename, numdigs, (unsigned long)proct->name.vpid);
asprintf(&outfile, "%s.%0*lu", orte_output_filename, numdigs, (unsigned long)proct->name.vpid);
/* create the file */
fdout = open(outfile, O_CREAT|O_RDWR|O_TRUNC, 0644);
free(outfile);