From 0820a630eb66a0e63a4387f9e38005145ed8857c Mon Sep 17 00:00:00 2001 From: Morris Jette <jette@schedmd.com> Date: Wed, 20 Apr 2016 14:23:40 -0700 Subject: [PATCH] Move some definitions into alphabetic order No change in any logic or definitions --- src/plugins/burst_buffer/cray/burst_buffer_cray.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/burst_buffer/cray/burst_buffer_cray.c b/src/plugins/burst_buffer/cray/burst_buffer_cray.c index 151867b05cc..9fb09319d36 100644 --- a/src/plugins/burst_buffer/cray/burst_buffer_cray.c +++ b/src/plugins/burst_buffer/cray/burst_buffer_cray.c @@ -240,8 +240,6 @@ static int _parse_bb_opts(struct job_descriptor *job_desc, static void _parse_config_links(json_object *instance, bb_configs_t *ent); static void _parse_instance_capacity(json_object *instance, bb_instances_t *ent); -static int _xlate_batch(struct job_descriptor *job_desc); -static int _xlate_interactive(struct job_descriptor *job_desc); static void _pick_alloc_account(bb_alloc_t *bb_alloc); static void _purge_bb_files(uint32_t job_id, struct job_record *job_ptr); static void _purge_vestigial_bufs(void); @@ -266,6 +264,8 @@ static void _timeout_bb_rec(void); static int _write_file(char *file_name, char *buf); static int _write_nid_file(char *file_name, char *node_list, uint32_t job_id); +static int _xlate_batch(struct job_descriptor *job_desc); +static int _xlate_interactive(struct job_descriptor *job_desc); /* Convert a Python string to real JSON format. Specifically replace single * quotes with double quotes and strip leading "u" before the single quotes. -- GitLab