Branch: refs/heads/master Author: Enrico Tröger enrico.troeger@uvena.de Committer: Enrico Tröger enrico.troeger@uvena.de Date: Sun, 26 May 2024 12:33:10 UTC Commit: bb289f1562ec4368efa400c3d17cb17c206f101d https://github.com/geany/geany-plugins/commit/bb289f1562ec4368efa400c3d17cb1...
Log Message: ----------- ProjectOrganizer, Workbench: Use GStatBuf for "g_stat()" calls
Modified Paths: -------------- projectorganizer/src/prjorg-project.c workbench/src/tm_control.c
Modified: projectorganizer/src/prjorg-project.c 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -234,7 +234,7 @@ static gboolean match_basename(gconstpointer pft, gconstpointer user_data) * extension and only if this fails, look at the shebang */ static GeanyFiletype *filetypes_detect(const gchar *utf8_filename) { - struct stat s; + GStatBuf s; GeanyFiletype *ft = NULL; gchar *locale_filename;
Modified: workbench/src/tm_control.c 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -165,7 +165,7 @@ static gboolean match_basename(gconstpointer pft, gconstpointer user_data) * extension and only if this fails, look at the shebang */ static GeanyFiletype *filetypes_detect(const gchar *utf8_filename) { - struct stat s; + GStatBuf s; GeanyFiletype *ft = NULL; gchar *locale_filename;
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
plugins-commits@lists.geany.org