From 320cd23ae0c0cee8209df78b6ba03ec2ced6b05a Mon Sep 17 00:00:00 2001 From: rfm Date: Mon, 13 Mar 2006 06:23:39 +0000 Subject: [PATCH] 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 --- Source/NSPropertyList.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/NSPropertyList.m b/Source/NSPropertyList.m index 6a790d118..55fde04fb 100644 --- a/Source/NSPropertyList.m +++ b/Source/NSPropertyList.m @@ -712,11 +712,11 @@ static id parsePlItem(pldata* pld) len--; // Allow for quoted values. - if (ptr[0] == '\'' && len > 1) + if (ptr[0] == '"' && len > 1) { len--; ptr++; - if (ptr[len - 1] == '\'') + if (ptr[len - 1] == '"') { len--; }