From 00721787e18569e1d70db36be3de6814c861d99c Mon Sep 17 00:00:00 2001 From: Rubidium Date: Thu, 26 Jan 2023 23:34:28 +0100 Subject: [PATCH] Fix: wrong type for INVALID_LINK_GRAPH_JOB --- src/linkgraph/linkgraph_type.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/linkgraph/linkgraph_type.h b/src/linkgraph/linkgraph_type.h index a2618ae84f..1839633bf6 100644 --- a/src/linkgraph/linkgraph_type.h +++ b/src/linkgraph/linkgraph_type.h @@ -14,7 +14,7 @@ typedef uint16 LinkGraphID; static const LinkGraphID INVALID_LINK_GRAPH = UINT16_MAX; typedef uint16 LinkGraphJobID; -static const LinkGraphID INVALID_LINK_GRAPH_JOB = UINT16_MAX; +static const LinkGraphJobID INVALID_LINK_GRAPH_JOB = UINT16_MAX; typedef uint16 NodeID; static const NodeID INVALID_NODE = UINT16_MAX;