Skip to content

Commit e934dbf

Browse files
committed
main REFACTOR formatting
1 parent 5dbdfa5 commit e934dbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1534,7 +1534,7 @@ main(int argc, char *argv[])
15341534
*ptr = '\0';
15351535

15361536
/* * optarg now points to endpoint_name, (ptr + 1) points to unix_socket_path */
1537-
if (strlen(optarg) == 0 || strlen(ptr + 1) == 0) {
1537+
if ((strlen(optarg) == 0) || (strlen(ptr + 1) == 0)) {
15381538
ERR("Empty endpoint name or socket path provided in -U parameter.");
15391539
return EXIT_FAILURE;
15401540
}

0 commit comments

Comments
 (0)