Signed-off-by: Sebastian Ramacher <sebastian+dev@ramacher.at>
This commit is contained in:
Sebastian Ramacher 2014-01-06 15:34:03 +01:00
parent 5d2666daf5
commit 7b9fd65ce6
2 changed files with 2 additions and 2 deletions

View File

@ -454,7 +454,7 @@ config_load_default(zathura_t* zathura)
}
void
config_load_file(zathura_t* zathura, char* path)
config_load_file(zathura_t* zathura, const char* path)
{
if (zathura == NULL || path == NULL) {
return;

View File

@ -21,6 +21,6 @@ void config_load_default(zathura_t* zathura);
* @param zathura The zathura session
* @param path Path to the configuration file
*/
void config_load_file(zathura_t* zathura, char* path);
void config_load_file(zathura_t* zathura, const char* path);
#endif // CONFIG_H