Skip to content

Commit

Permalink
arm64: fix wrong ifdef
Browse files Browse the repository at this point in the history
  • Loading branch information
tpruvot committed Oct 12, 2017
1 parent af7bef8 commit 477b5fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sysinfos.c
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ int cpu_fanpercent()
return 0;
}

#if !defined(__arm__) || !defined(__aarch64__)
#if !defined(__arm__) && !defined(__aarch64__)
static inline void cpuid(int functionnumber, int output[4]) {
#if defined (_MSC_VER) || defined (__INTEL_COMPILER)
// Microsoft or Intel compiler, intrin.h included
Expand Down

0 comments on commit 477b5fa

Please sign in to comment.