Skip to content

Commit

Permalink
arch/arm: s/false/0/
Browse files Browse the repository at this point in the history
arch/arm.c: In function 'ceph_arch_arm_probe':
arch/arm.c:54:28: error: 'false' undeclared (first use in this function)
  ceph_arch_aarch64_crc32 = false;  // sorry!
                            ^
arch/arm.c:54:28: note: each undeclared identifier is reported only once for each function it appears in

Signed-off-by: Sage Weil <[email protected]>
  • Loading branch information
liewegas committed Sep 23, 2015
1 parent f1ead76 commit 3123b2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/arch/arm.c
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ int ceph_arch_arm_probe(void)
# ifdef HWCAP_CRC32
ceph_arch_aarch64_crc32 = (get_hwcap() & HWCAP_CRC32) == HWCAP_CRC32;
# else
ceph_arch_aarch64_crc32 = false; // sorry!
ceph_arch_aarch64_crc32 = 0; // sorry!
# endif
#else
if (0)
Expand Down

0 comments on commit 3123b2c

Please sign in to comment.