Apply whitespace to if statement
This commit is contained in:
parent
a2902687d5
commit
66cecb0379
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ iscidraddr(const char *str)
|
||||||
size_t len = (str == NULL ? 0 : strnlen(str, 16));
|
size_t len = (str == NULL ? 0 : strnlen(str, 16));
|
||||||
|
|
||||||
for(size_t i = 0; i < len; i++) {
|
for(size_t i = 0; i < len; i++) {
|
||||||
if(str[i] == '/') {
|
if (str[i] == '/') {
|
||||||
offset = i;
|
offset = i;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue