Update stdstring.h

This commit is contained in:
bparker06 2019-04-03 12:06:31 -04:00 committed by GitHub
parent a5aa4d731b
commit c8b9b4ef25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
/* Copyright (C) 2010-2018 The RetroArch team
/* Copyright (C) 2010-2019 The RetroArch team
*
* ---------------------------------------------------------------------------------------
* The following license statement only applies to this file (stdstring.h).
@ -44,7 +44,7 @@ static INLINE bool string_is_equal(const char *a, const char *b)
{
if (!a || !b)
return false;
return strcmp(a, b) == 0;
return !strcmp(a, b);
}
static INLINE bool string_is_not_equal(const char *a, const char *b)