Browse Source

Fix misleading indentation warning

pull/191/head
Andrew Waterman 10 years ago
parent
commit
1261c826a4
  1. 3
      newlib/newlib/libc/machine/riscv/strlen.c

3
newlib/newlib/libc/machine/riscv/strlen.c

@ -36,6 +36,7 @@ size_t strlen(const char* str)
if (c0 == 0) return ret + 4 - sl;
if (c1 == 0) return ret + 5 - sl;
if (c2 == 0) return ret + 6 - sl;
return ret + 7 - sl;
return ret + 7 - sl;
#endif /* not PREFER_SIZE_OVER_SPEED */
}

Loading…
Cancel
Save