Skip to content
Snippets Groups Projects
Commit f48d0a9e authored by Moe Jette's avatar Moe Jette
Browse files

Change update time format from hex to decimal for config time.

parent c728e7b0
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,7 @@ void slurm_print_ctl_conf ( FILE* out, slurm_ctl_conf_info_msg_t * slurm_ctl_con
{
if ( slurm_ctl_conf_ptr == NULL )
return ;
fprintf(out, "Configuration updated at %lx\n", (time_t)slurm_ctl_conf_ptr->last_update);
fprintf(out, "Configuration updated at %ld\n", (time_t)slurm_ctl_conf_ptr->last_update);
fprintf(out, "BackupController = %s\n", slurm_ctl_conf_ptr->backup_controller);
fprintf(out, "ControlMachine = %s\n", slurm_ctl_conf_ptr->control_machine);
fprintf(out, "Epilog = %s\n", slurm_ctl_conf_ptr->epilog);
......
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