Skip to content

Commit 5682196

Browse files
committed
[CoreFoundation] Fix enum name in function body.
The enum name was probably autocompleted wrong. There should be no functional change. LLVM 8 seems to raise a new warning here.
1 parent 8e587b8 commit 5682196

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)