Skip to content

Commit 25e6a14

Browse files
committed
style: fix clang-format violations
1 parent 10b10ab commit 25e6a14

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/mctpd.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2843,12 +2843,12 @@ static int query_peer_properties(struct peer *peer)
28432843
// Warn here, it's a mandatory command code.
28442844
// It might be too noisy if some devices don't implement it.
28452845
warnx("Error getting endpoint types for %s. Ignoring error %d %s",
2846-
peer_tostr(peer), rc, strerror(-rc));
2846+
peer_tostr(peer), rc, strerror(-rc));
28472847
if (rc == -ETIMEDOUT) {
28482848
for (int i = 0; i < max_retries; i++) {
28492849
if (peer->ctx->verbose)
28502850
warnx("Retrying to get endpoint types for %s. Attempt %d",
2851-
peer_tostr(peer), i + 1);
2851+
peer_tostr(peer), i + 1);
28522852
rc = query_get_peer_msgtypes(peer);
28532853
if (rc == 0)
28542854
break;
@@ -2861,12 +2861,12 @@ static int query_peer_properties(struct peer *peer)
28612861
if (rc < 0) {
28622862
if (peer->ctx->verbose)
28632863
warnx("Error getting UUID for %s. Ignoring error %d %s",
2864-
peer_tostr(peer), rc, strerror(-rc));
2864+
peer_tostr(peer), rc, strerror(-rc));
28652865
if (rc == -ETIMEDOUT) {
28662866
for (int i = 0; i < max_retries; i++) {
28672867
if (peer->ctx->verbose)
28682868
warnx("Retrying to get peer UUID for %s. Attempt %d",
2869-
peer_tostr(peer), i + 1);
2869+
peer_tostr(peer), i + 1);
28702870
rc = query_get_peer_uuid(peer);
28712871
if (rc == 0)
28722872
break;

0 commit comments

Comments
 (0)