Skip to content
Snippets Groups Projects
Commit 31ded19d authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Resolve warning: enumeration value ‘FILE_SORT_NATURAL’ not handled in switch

parent 3b44b335
No related branches found
No related tags found
No related merge requests found
Pipeline #5764 passed
......@@ -358,6 +358,8 @@ void sortfiles(file_t* filelist, size_t count, enum file_sort order)
case FILE_SORT_SIZE_D:
qsort(filelist, count, sizeof(*filelist), file_compare_size_d);
break;
case FILE_SORT_NATURAL:
break;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment