0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-19 20:32:15 +02:00

libobs: Remove unnecessary const qualifier

This function returns a char *, so it should not be const (the value is
set from a function which also returns a char *, so there is no real
reason for this to be const).
This commit is contained in:
Hunter L. Allen 2018-06-30 15:38:49 -04:00
parent f838585b03
commit e3356d5ff6

View File

@ -789,7 +789,7 @@ char *obs_find_data_file(const char *file)
{
struct dstr path = {0};
const char *result = find_libobs_data_file(file);
char *result = find_libobs_data_file(file);
if (result)
return result;