diff options
Diffstat (limited to 'contrib/ntp/include/ntp_lists.h')
-rw-r--r-- | contrib/ntp/include/ntp_lists.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/ntp/include/ntp_lists.h b/contrib/ntp/include/ntp_lists.h index 2b6e616..d741974 100644 --- a/contrib/ntp/include/ntp_lists.h +++ b/contrib/ntp/include/ntp_lists.h @@ -215,9 +215,9 @@ do { \ \ for (pentry = (listhead); \ pentry != NULL; \ - pentry = pentry->nextlink){ \ - NTP_INSIST(pentry != pentry->nextlink); \ - NTP_INSIST((listhead) != pentry->nextlink); \ + pentry = pentry->nextlink) { \ + INSIST(pentry != pentry->nextlink); \ + INSIST((listhead) != pentry->nextlink); \ } \ } while (FALSE) |