Skip to content
Snippets Groups Projects
Commit 06750780 authored by Morris Jette's avatar Morris Jette
Browse files

Mod needed for argc being uint32_t

parent 4ac53567
No related branches found
No related tags found
No related merge requests found
......@@ -141,7 +141,7 @@ _sub_expression(char *args_spec, int task_rank, int task_offset)
*/
extern int
multi_prog_get_argv(char *file_contents, char **prog_env, int task_rank,
int *argc, char ***argv)
uint32_t *argc, char ***argv)
{
char *line = NULL;
int line_num = 0;
......
......@@ -47,5 +47,5 @@
* "task_rank" is the task's GLOBAL rank within the job step.
*/
extern int multi_prog_get_argv(char *config_data, char **prog_env,
int task_rank, int *argc, char ***argv);
int task_rank, uint32_t *argc, char ***argv);
#endif /* !_SLURMD_MULTI_PROG_H */
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