forked from len0rd/rockbox
strstr(): cosmetics
remove extra ';' replace tabs by spaces git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27396 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
8a07e78a06
commit
c9f997cc91
1 changed files with 17 additions and 17 deletions
|
@ -23,7 +23,7 @@ char *strstr(const char *s1, const char *s2)
|
||||||
|
|
||||||
do {
|
do {
|
||||||
if (!*p) {
|
if (!*p) {
|
||||||
return (char *) s1;;
|
return (char *) s1;
|
||||||
}
|
}
|
||||||
if (*p == *s) {
|
if (*p == *s) {
|
||||||
++p;
|
++p;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue