Skip to content
Snippets Groups Projects
Commit d7458182 authored by Tim Wickberg's avatar Tim Wickberg
Browse files

Spelling fix in two comments. No functional change.

parent 9a09c055
No related branches found
No related tags found
No related merge requests found
......@@ -481,7 +481,7 @@ hv_to_job_info_msg(HV *hv, job_info_msg_t *job_info_msg)
FETCH_FIELD(hv, job_info_msg, last_update, time_t, TRUE);
svp = hv_fetch(hv, "job_array", 9, FALSE);
if (! (svp && SvROK(*svp) && SvTYPE(SvRV(*svp)) == SVt_PVAV)) {
Perl_warn (aTHX_ "job_array is not an arrary reference in HV for job_info_msg_t");
Perl_warn (aTHX_ "job_array is not an array reference in HV for job_info_msg_t");
return -1;
}
av = (AV*)SvRV(*svp);
......
......@@ -360,7 +360,7 @@ extern void block_daemon(void);
void
exec_task(stepd_step_rec_t *job, int i)
{
uint32_t *gtids; /* pointer to arrary of ranks */
uint32_t *gtids; /* pointer to array of ranks */
int fd, j;
stepd_step_task_info_t *task = job->task[i];
char **tmp_env;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment