Skip to content

Commit

Permalink
Merge pull request grpc#21580 from yashykt/timeprecisebug
Browse files Browse the repository at this point in the history
Replace or with ||
  • Loading branch information
yashykt authored Jan 6, 2020
2 parents ca60aac + 324d2e6 commit 1388c7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/lib/gpr/time_precise.cc
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

#include "src/core/lib/gpr/time_precise.h"

#if GPR_CYCLE_COUNTER_RDTSC_32 or GPR_CYCLE_COUNTER_RDTSC_64
#if GPR_CYCLE_COUNTER_RDTSC_32 || GPR_CYCLE_COUNTER_RDTSC_64
#if GPR_LINUX
static bool read_freq_from_kernel(double* freq) {
// Google production kernel export the frequency for us in kHz.
Expand Down

0 comments on commit 1388c7a

Please sign in to comment.