libobs: Allow const argument in obs_set_cmdline_args

obs_set_cmdline_args copies the arguments passed to it. This means that
the array passed will never require it to be modified.
This commit is contained in:
Zachary Lund
2018-12-29 23:42:15 -06:00
parent c9612983e6
commit fe3f7539a3
2 changed files with 2 additions and 2 deletions

View File

@@ -854,7 +854,7 @@ bool obs_startup(const char *locale, const char *module_config_path,
}
static struct obs_cmdline_args cmdline_args = {0, NULL};
void obs_set_cmdline_args(int argc, char **argv)
void obs_set_cmdline_args(int argc, const char * const *argv)
{
char *data;
size_t len;