Skip to content

Commit 37e2445

Browse files
Apply line wrap suggestions from linter
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 3486868 commit 37e2445

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/scitokens.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1111,7 +1111,8 @@ int config_set_str(const char *key, const char *value, char **err_msg) {
11111111
return 0;
11121112
}
11131113

1114-
int scitokens_config_set_str(const char *key, const char *value, char **err_msg) {
1114+
int scitokens_config_set_str(const char *key, const char *value,
1115+
char **err_msg) {
11151116
if (!key) {
11161117
if (err_msg) {
11171118
*err_msg = strdup("A key must be provided.");

src/scitokens.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,8 @@ int scitokens_config_get_int(const char *key, char **err_msg);
323323
int config_set_str(const char *key, const char *value, char **err_msg);
324324

325325
// Prefixed version of the same API to avoid potential symbol collisions
326-
int scitokens_config_set_str(const char *key, const char *value, char **err_msg);
326+
int scitokens_config_set_str(const char *key, const char *value,
327+
char **err_msg);
327328

328329
/**
329330
* Get current scitokens str parameters.

0 commit comments

Comments
 (0)