Add braces to make if-if-then-else structure clear and avoid GCC 4.4.0 error message

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@18827 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Phil Longstaff 2010-03-04 22:04:23 +00:00
parent 98bfef5845
commit 210472586c

View File

@ -847,10 +847,16 @@ match_century:
}
#endif
if (!match_string (HERE_AM_STR, rp))
{
if (match_string (HERE_PM_STR, rp))
{
is_pm = 1;
}
else
{
return NULL;
}
}
break;
case 'r':
#ifdef _NL_CURRENT