netutils/ntpclient: Fix missing left parenthesis.

This commit is contained in:
Pierre-Noel Bouteville 2016-12-04 08:03:47 -06:00 committed by Gregory Nutt
parent 2c5b13834c
commit feb18e9750

View File

@ -177,7 +177,7 @@
#define MKLVM(l,v,m) ((uint8_t)(l) << 6 | (uint8_t)(v) << 3 | (uint8_t)(m))
#define GETLI(lvm) ((uint8_t)(lvm) >> 6)
#define GETVN(lvm) ((uint8_t)(lvm) >> 3) & 7)
#define GETVN(lvm) (((uint8_t)(lvm) >> 3) & 7)
#define GETMODE(lvm) ((uint8_t)(lvm) & 7)
/****************************************************************************