util/String{Compare,API}: indent with tabs

This commit is contained in:
Max Kellermann
2017-05-16 23:01:43 +02:00
parent ab8005f03e
commit 0fcc28a108
3 changed files with 6 additions and 6 deletions

View File

@@ -106,11 +106,11 @@ static inline char *
UnsafeCopyStringP(char *dest, const char *src) noexcept
{
#if defined(WIN32) || defined(__BIONIC__)
/* emulate stpcpy() */
UnsafeCopyString(dest, src);
return dest + StringLength(dest);
/* emulate stpcpy() */
UnsafeCopyString(dest, src);
return dest + StringLength(dest);
#else
return stpcpy(dest, src);
return stpcpy(dest, src);
#endif
}