diff options
| author | Donatas Abraitis <donatas.abraitis@gmail.com> | 2020-03-04 18:49:36 +0200 |
|---|---|---|
| committer | Donatas Abraitis <donatas.abraitis@gmail.com> | 2020-03-04 18:49:36 +0200 |
| commit | 08c2d52ae198fe3cc22dc6896db6daa19e5e9dc8 (patch) | |
| tree | b835b8642773b1a86740c09c4b180ec080b3a257 /lib/plist.c | |
| parent | a5f6e69b14ff9a677c5ba5064cc47c5cf1aa7f3e (diff) | |
*: Use true/false instead of 1/0 when assigning variable for bool type
Signed-off-by: Donatas Abraitis <donatas.abraitis@gmail.com>
Diffstat (limited to 'lib/plist.c')
| -rw-r--r-- | lib/plist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/plist.c b/lib/plist.c index e465963f21..40131aebed 100644 --- a/lib/plist.c +++ b/lib/plist.c @@ -2039,7 +2039,7 @@ static void prefix_list_reset_afi(afi_t afi, int orf) assert(master->str.head == NULL); assert(master->str.tail == NULL); - master->seqnum = 1; + master->seqnum = true; master->recent = NULL; } |
