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

Remove unused function.

parent 1238e375
No related branches found
No related tags found
No related merge requests found
...@@ -234,16 +234,6 @@ int _print_int(int number, int width, bool right, bool cut_output) ...@@ -234,16 +234,6 @@ int _print_int(int number, int width, bool right, bool cut_output)
} }
int _create_format(char *buffer, const char *type, int width, bool right)
{
if (snprintf
(buffer, FORMAT_STRING_SIZE,
(right ? " %%-%d.%d%s" : "%%%d.%d%s "), width, width - 1,
type) == -1)
return SLURM_ERROR;
return SLURM_SUCCESS;
}
int _print_secs(long time, int width, bool right, bool cut_output) int _print_secs(long time, int width, bool right, bool cut_output)
{ {
char str[FORMAT_STRING_SIZE]; char str[FORMAT_STRING_SIZE];
......
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