Apply whitespace to if statement

This commit is contained in:
0x1eef 2023-08-28 03:39:46 -03:00
parent a2902687d5
commit 66cecb0379

View file

@ -12,7 +12,7 @@ iscidraddr(const char *str)
size_t len = (str == NULL ? 0 : strnlen(str, 16));
for(size_t i = 0; i < len; i++) {
if(str[i] == '/') {
if (str[i] == '/') {
offset = i;
break;
}