diff --git a/src/plugins/launch/aprun/launch_aprun.c b/src/plugins/launch/aprun/launch_aprun.c
index 30acc478b4fbcfc276eb21ffba6f4658719ef255..5947a62a41dc14f02098ca79aff18f00cd4536df 100644
--- a/src/plugins/launch/aprun/launch_aprun.c
+++ b/src/plugins/launch/aprun/launch_aprun.c
@@ -583,14 +583,14 @@ extern void launch_p_step_timeout(srun_timeout_msg_t *timeout_msg)
 		slurm_make_time_str(&timeout_msg->timeout,
 				    time_str, sizeof(time_str));
 		debug("step %u.%u. will timeout at %s",
-		      timeout_msg.job_id, timeout_msg.step_id, time_str);
+		      timeout_msg->job_id, timeout_msg->step_id, time_str);
 		return;
 	}
 
 	slurm_make_time_str(&now, time_str, sizeof(time_str));
 
 	error("*** STEP %u.%u CANCELLED AT %s DUE TO TIME LIMIT ***",
-	      timeout_msg.job_id, timeout_msg.step_id, time_str);
+	      timeout_msg->job_id, timeout_msg->step_id, time_str);
 	launch_p_fwd_signal(SIGKILL);
 	return;
 }
diff --git a/src/plugins/launch/poe/launch_poe.c b/src/plugins/launch/poe/launch_poe.c
index aab24f415deac6642dd76d4ab780eb66db5dbafb..6539beb1f524d3d750fb91d598da445e5f5888c9 100644
--- a/src/plugins/launch/poe/launch_poe.c
+++ b/src/plugins/launch/poe/launch_poe.c
@@ -809,14 +809,14 @@ extern void launch_p_step_timeout(srun_timeout_msg_t *timeout_msg)
 		slurm_make_time_str(&timeout_msg->timeout,
 				    time_str, sizeof(time_str));
 		debug("step %u.%u. will timeout at %s",
-		      timeout_msg.job_id, timeout_msg.step_id, time_str);
+		      timeout_msg->job_id, timeout_msg->step_id, time_str);
 		return;
 	}
 
 	slurm_make_time_str(&now, time_str, sizeof(time_str));
 
 	error("*** STEP %u.%u CANCELLED AT %s DUE TO TIME LIMIT ***",
-	      timeout_msg.job_id, timeout_msg.step_id, time_str);
+	      timeout_msg->job_id, timeout_msg->step_id, time_str);
 	launch_p_fwd_signal(SIGKILL);
 	return;
 }