Skip to content

Commit 81bddc1

Browse files
authored
Merge pull request #2028 from drodriguez/fix-enum-name
[CoreFoundation] Fix enum name in function body.
2 parents d34d356 + 5682196 commit 81bddc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CoreFoundation/Locale.subproj/CFDateIntervalFormatter.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ void CFDateIntervalFormatterSetTimeStyle(CFDateIntervalFormatterRef formatter, C
408408

409409
_CFDateIntervalFormatterBoundaryStyle _CFDateIntervalFormatterGetBoundaryStyle(CFDateIntervalFormatterRef formatter) {
410410
LOCK();
411-
CFDateIntervalFormatterStyle result = formatter->_boundaryStyle;
411+
_CFDateIntervalFormatterBoundaryStyle result = formatter->_boundaryStyle;
412412
UNLOCK();
413413
return result;
414414
}

0 commit comments

Comments
 (0)