wp_find_file: s/char/gchar/ in suffix argument

This commit is contained in:
George Kiagiadakis
2024-02-24 11:11:07 +02:00
parent db21eb5dec
commit 28f9716eff
2 changed files with 2 additions and 2 deletions

View File

@@ -162,7 +162,7 @@ done:
* \since 0.4.2
*/
gchar *
wp_find_file (WpLookupDirs dirs, const gchar *filename, const char *subdir)
wp_find_file (WpLookupDirs dirs, const gchar *filename, const gchar *subdir)
{
g_autoptr(GPtrArray) dir_paths = lookup_dirs (dirs);

View File

@@ -93,7 +93,7 @@ typedef enum { /*< flags >*/
WP_API
gchar * wp_find_file (WpLookupDirs dirs, const gchar *filename,
const char *subdir);
const gchar *subdir);
WP_API
WpIterator * wp_new_files_iterator (WpLookupDirs dirs, const gchar *subdir,