Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
iceman1001 committed Apr 10, 2019
1 parent 0564816 commit 260ad9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion armsrc/string.c
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ int strlen(const char *str) {
const char *p;
for (p = str; *p != '\0'; ++p) {
}
return p-str;
return p - str;
}

char *strncat(char *dest, const char *src, unsigned int n) {
Expand Down

0 comments on commit 260ad9b

Please sign in to comment.