Fixed incorrect string comparison on some platforms (fixes #1198)

This commit is contained in:
Benoit Blanchon
2020-02-27 11:44:09 +01:00
parent 2996503b27
commit 2641697e0b
10 changed files with 110 additions and 57 deletions

View File

@@ -17,7 +17,7 @@ class ConstRamStringAdapter {
public:
ConstRamStringAdapter(const char* str = 0) : _str(str) {}
int8_t compare(const char* other) const {
int compare(const char* other) const {
return safe_strcmp(_str, other);
}