Skip to content

Commit 9bcec05

Browse files
authored
Merge pull request #4688 from apple/compnerd/implicit-int
Update CFRuntime.c
2 parents 314bb06 + 7605811 commit 9bcec05

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CoreFoundation/Base.subproj/CFRuntime.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -446,9 +446,9 @@ CFTypeRef _CFRuntimeCreateInstance(CFAllocatorRef allocator, CFTypeID typeID, CF
446446

447447
#if !defined(__APPLE__) && (defined(__i686__) || (defined(__arm__) && !defined(__aarch64__)) || defined(_M_IX86) || defined(_M_ARM))
448448
// Linux and Windows 32-bit targets perform 8-byte alignment by default.
449-
static const kDefaultAlignment = 8;
449+
static const int kDefaultAlignment = 8;
450450
#else
451-
static const kDefaultAlignment = 16;
451+
static const int kDefaultAlignment = 16;
452452
#endif
453453

454454
// Ensure that we get the alignment correct for various targets. In the

0 commit comments

Comments
 (0)