aboutgitcodebugslistschat
diff options
context:
space:
mode:
authorLaurent Vivier <lvivier@redhat.com>2025-05-06 16:13:25 +0200
committerStefano Brivio <sbrivio@redhat.com>2025-05-08 13:24:14 +0200
commit92d5d680134455f1a5b51fd8a3e9e64c99ac6d13 (patch)
treec04b1e33276fd7549d50256e1fb5ea096b43263a
parenteea8a76caf85f4bae5f92b695d09b9ddea354b57 (diff)
downloadpasst-92d5d680134455f1a5b51fd8a3e9e64c99ac6d13.tar
passt-92d5d680134455f1a5b51fd8a3e9e64c99ac6d13.tar.gz
passt-92d5d680134455f1a5b51fd8a3e9e64c99ac6d13.tar.bz2
passt-92d5d680134455f1a5b51fd8a3e9e64c99ac6d13.tar.lz
passt-92d5d680134455f1a5b51fd8a3e9e64c99ac6d13.tar.xz
passt-92d5d680134455f1a5b51fd8a3e9e64c99ac6d13.tar.zst
passt-92d5d680134455f1a5b51fd8a3e9e64c99ac6d13.zip
flow: fix wrong macro name in commentsHEADmaster
The maximum number of flow macro name is FLOW_MAX, not MAX_FLOW. Signed-off-by: Laurent Vivier <lvivier@redhat.com> Reviewed-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
-rw-r--r--flow.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/flow.c b/flow.c
index c5718e3..6a5c8aa 100644
--- a/flow.c
+++ b/flow.c
@@ -81,7 +81,7 @@ static_assert(ARRAY_SIZE(flow_proto) == FLOW_NUM_TYPES,
*
* Free cluster list
* flow_first_free gives the index of the first (lowest index) free cluster.
- * Each free cluster has the index of the next free cluster, or MAX_FLOW if
+ * Each free cluster has the index of the next free cluster, or FLOW_MAX if
* it is the last free cluster. Together these form a linked list of free
* clusters, in strictly increasing order of index.
*