Skip to content

Commit

Permalink
style: add missing const
Browse files Browse the repository at this point in the history
  • Loading branch information
vil02 committed Oct 2, 2023
1 parent 9d291a0 commit 221a057
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data_structures/graphs/kruskal.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ struct Graph *createGraph(int V, int E)
*
* @param ptr Pointer to the graph structure to be deallocated.
*/
void deleteGraph(struct Graph *graph)
void deleteGraph(struct Graph *const graph)
{
if (graph == NULL)
{
Expand Down

0 comments on commit 221a057

Please sign in to comment.