Skip to content

Commit 221a057

Browse files
committed
style: add missing const
1 parent 9d291a0 commit 221a057

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data_structures/graphs/kruskal.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ struct Graph *createGraph(int V, int E)
4141
*
4242
* @param ptr Pointer to the graph structure to be deallocated.
4343
*/
44-
void deleteGraph(struct Graph *graph)
44+
void deleteGraph(struct Graph *const graph)
4545
{
4646
if (graph == NULL)
4747
{

0 commit comments

Comments
 (0)