Skip to content

Commit

Permalink
Change rt_expires to uint32_t in struct
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinMcInnes authored Jan 9, 2025
1 parent 1ecf245 commit a3c95eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/route.h
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ struct rt {
#define RTDF_GATELINK 0x40 /* Gateway is on link */
size_t rt_order;
rb_node_t rt_tree;
int rt_expires; /* current lifetime of route */
uint32_t rt_expires; /* current lifetime of route */
};

extern const rb_tree_ops_t rt_compare_list_ops;
Expand Down

0 comments on commit a3c95eb

Please sign in to comment.