mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-05 14:19:05 +00:00
netutils/ntpclient: Fix missing left parenthesis.
This commit is contained in:
parent
2c5b13834c
commit
feb18e9750
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
||||
/****************************************************************************
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue