mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-08 10:21:40 +00:00
[plist] Fix a purity issue in the json test
I guess I forgot to do a `make check` with optimized builds.
This commit is contained in:
parent
a22d2a9526
commit
bff709e71d
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ static const char *test_strings[] = {
|
|||
};
|
||||
#define num_string_tests (sizeof (test_strings) / sizeof (test_strings[0]))
|
||||
|
||||
static int
|
||||
static int __attribute__((pure))
|
||||
wsstrcmp (const char *s1, const char *s2)
|
||||
{
|
||||
while (*s1 && *s1 == *s2) {
|
||||
|
|
Loading…
Reference in a new issue