mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-12-29 11:16:00 +01:00
Rename arguments
Signed-off-by: Sebastian Ramacher <sebastian+dev@ramacher.at>
This commit is contained in:
parent
0c7ed64c0a
commit
1dbec870cb
2 changed files with 3 additions and 3 deletions
|
@ -111,9 +111,9 @@ zathura_filemonitor_init(ZathuraFileMonitor* file_monitor)
|
|||
private->file_path = NULL;
|
||||
}
|
||||
|
||||
const char* zathura_filemonitor_get_filepath(ZathuraFileMonitor* filemonitor)
|
||||
const char* zathura_filemonitor_get_filepath(ZathuraFileMonitor* file_monitor)
|
||||
{
|
||||
private_t* private = GET_PRIVATE(filemonitor);
|
||||
private_t* private = GET_PRIVATE(file_monitor);
|
||||
|
||||
return private->file_path;
|
||||
}
|
||||
|
|
|
@ -74,6 +74,6 @@ zathura_filemonitor_new(const char* file_path,
|
|||
*
|
||||
* @return path of monitored file
|
||||
*/
|
||||
const char* zathura_filemonitor_get_filepath(ZathuraFileMonitor* filemonitor);
|
||||
const char* zathura_filemonitor_get_filepath(ZathuraFileMonitor* file_monitor);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue