diff --git a/src/common/plugstack.c b/src/common/plugstack.c index d3889ea0474227a086d54cc8b3df6bf00c74423f..e87813f5ffecbd06b3a3bb4de1ea1e4fd9257dae 100644 --- a/src/common/plugstack.c +++ b/src/common/plugstack.c @@ -16,7 +16,7 @@ * any later version. * * In addition, as a special exception, the copyright holders give permission - * to link the code of portions of this program with the OpenSSL library under + * to link the code of portions of this program with the OpenSSL library under * certain conditions as described in each individual source file, and * distribute linked combinations including the two. You must obey the GNU * General Public License in all respects for all of the code used other than @@ -1639,7 +1639,8 @@ spank_err_t spank_get_item(spank_t spank, spank_item_t item, ...) p2uint32 = va_arg(vargs, uint32_t *); if (spank_ctx == S_TYPE_LOCAL) { if (launcher_job->step_layout) - *p2uint32 = launcher_job->step_layout->node_cnt; + *p2uint32 = launcher_job->step_layout-> + node_cnt; else { *p2uint32 = 0; rc = ESPANK_ENV_NOEXIST; @@ -1659,7 +1660,8 @@ spank_err_t spank_get_item(spank_t spank, spank_item_t item, ...) p2uint32 = va_arg(vargs, uint32_t *); if (spank_ctx == S_TYPE_LOCAL) { if (launcher_job->step_layout) - *p2uint32 = launcher_job->step_layout->task_cnt; + *p2uint32 = launcher_job->step_layout-> + task_cnt; else { *p2uint32 = 0; rc = ESPANK_ENV_NOEXIST;