summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJasper St. Pierre <jstpierre@mecheye.net>2013-10-09 16:13:42 -0400
committerJasper St. Pierre <jstpierre@mecheye.net>2013-10-09 16:15:52 -0400
commit4d7415264738f03e4e72600b24883adc93d7307a (patch)
tree2b009034cf46c1f058904d42ae4b60054e22709b
parent7ed5e94b43e64d410715c3e08d34673611edf186 (diff)
downloadlibgsystem-4d7415264738f03e4e72600b24883adc93d7307a.tar.gz
Fix introspection warnings
-rw-r--r--gsystem-file-utils.h6
-rw-r--r--gsystem-subprocess.h2
2 files changed, 4 insertions, 4 deletions
diff --git a/gsystem-file-utils.h b/gsystem-file-utils.h
index 679f7c7..c364052 100644
--- a/gsystem-file-utils.h
+++ b/gsystem-file-utils.h
@@ -36,9 +36,9 @@ gboolean gs_file_enumerator_iterate (GFileEnumerator *direnum,
GCancellable *cancellable,
GError **error);
-gboolean gs_file_openat_noatime (int dirfd,
+gboolean gs_file_openat_noatime (int dfd,
const char *name,
- int *out_fd,
+ int *ret_fd,
GCancellable *cancellable,
GError **error);
@@ -75,7 +75,7 @@ gboolean gs_file_open_dir_fd (GFile *path,
GCancellable *cancellable,
GError **error);
-gboolean gs_file_open_in_tmpdir_at (int dirfd,
+gboolean gs_file_open_in_tmpdir_at (int tmpdir_fd,
int mode,
char **out_name,
GOutputStream **out_stream,
diff --git a/gsystem-subprocess.h b/gsystem-subprocess.h
index 5a0316e..f248f7b 100644
--- a/gsystem-subprocess.h
+++ b/gsystem-subprocess.h
@@ -74,7 +74,7 @@ gboolean gs_subprocess_request_exit (GSSubprocess *self);
void gs_subprocess_force_exit (GSSubprocess *self);
-/** High level helpers **/
+/**** High level helpers ****/
GSSubprocess * gs_subprocess_new_simple_argl (GSSubprocessStreamDisposition stdout_disposition,
GSSubprocessStreamDisposition stderr_disposition,