Skip to content

Commit 91e53bf

Browse files
committed
job-list: fix rfc7 code style violation
Problem: Function return type and name are on different lines. Put the return type and name on the same line.
1 parent 11f4793 commit 91e53bf

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/modules/job-list/job_state.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -376,8 +376,7 @@ static int parse_res_level (struct list_ctx *ctx,
376376

377377
/* Return basename of path if there is a '/' in path. Otherwise return
378378
* full path */
379-
static const char *
380-
parse_job_name (const char *path)
379+
static const char *parse_job_name (const char *path)
381380
{
382381
char *p = strrchr (path, '/');
383382
if (p) {

0 commit comments

Comments
 (0)