Skip to content

Commit

Permalink
Update sorting/selection_sort_recursive.c
Browse files Browse the repository at this point in the history
Co-authored-by: Ayaan Khan <[email protected]>
  • Loading branch information
DhruvPasricha and ayaankhan98 authored Feb 24, 2021
1 parent 63aded1 commit f8c9ea0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sorting/selection_sort_recursive.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ int findIndex(const int *arr, const int size)
* @param arr array to be sorted
* @param size size of array
*/
void selectionSort(int *arr, int size)
void selectionSort(int *arr, const int size)
{
if (size == 1)
{
Expand Down

0 comments on commit f8c9ea0

Please sign in to comment.