mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-02 21:01:07 +00:00
Fixup incorrect instance of single quotes to double quotes.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@22646 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
fadc20abd9
commit
320cd23ae0
1 changed files with 2 additions and 2 deletions
|
@ -712,11 +712,11 @@ static id parsePlItem(pldata* pld)
|
||||||
|
|
||||||
len--;
|
len--;
|
||||||
// Allow for quoted values.
|
// Allow for quoted values.
|
||||||
if (ptr[0] == '\'' && len > 1)
|
if (ptr[0] == '"' && len > 1)
|
||||||
{
|
{
|
||||||
len--;
|
len--;
|
||||||
ptr++;
|
ptr++;
|
||||||
if (ptr[len - 1] == '\'')
|
if (ptr[len - 1] == '"')
|
||||||
{
|
{
|
||||||
len--;
|
len--;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue