Skip to content

Commit

Permalink
content-sqlite: fix whitespace
Browse files Browse the repository at this point in the history
Problem: no space between function name and open parenthesis
violates RFC 7.

Add space.
  • Loading branch information
garlick committed Mar 30, 2022
1 parent 38208c9 commit 2bb7963
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/content-sqlite/content-sqlite.c
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@ int mod_main (flux_t *h, int argc, char **argv)
flux_log_error (h, "content_sqlite_create failed");
return -1;
}
if (content_sqlite_opendb(ctx) < 0)
if (content_sqlite_opendb (ctx) < 0)
goto done;
if (content_register_backing_store (h, "content-sqlite") < 0)
goto done;
Expand Down

0 comments on commit 2bb7963

Please sign in to comment.