summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2023-04-17 22:04:18 +0200
committerFlorian Weimer <fweimer@redhat.com>2023-04-17 22:18:27 +0200
commit38567c363cda16cd59c67d988e0373307df954a9 (patch)
treeef3226c30b69a61dddde587698e3a34023e289ed
parent2d9d4eb84b386204225f1129a91799284a891fc7 (diff)
downloadvala-38567c363cda16cd59c67d988e0373307df954a9.tar.gz
glib-2.0: g_chdir is declared in <glib/gstdio.h>
Not <glib.h>. Fixes an implicit function error when building deja-dup.
-rw-r--r--vapi/glib-2.0.vapi2
1 files changed, 1 insertions, 1 deletions
diff --git a/vapi/glib-2.0.vapi b/vapi/glib-2.0.vapi
index d3b66babb..58cc3b7ae 100644
--- a/vapi/glib-2.0.vapi
+++ b/vapi/glib-2.0.vapi
@@ -3485,7 +3485,7 @@ namespace GLib {
[CCode (cname = "g_atexit")]
public static void atexit (VoidFunc func);
[Version (since = "2.8")]
- [CCode (cname = "g_chdir")]
+ [CCode (cname = "g_chdir", cheader_filename = "glib/gstdio.h")]
public static int set_current_dir (string path);
}