about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2018-01-28 16:21:28 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2018-01-28 16:21:28 +0100
commit844bf92148eee21805b9248264b6c2c557529cc5 (patch)
tree220cbc95f4975da1b3388e33acb1476b5a7c7853
parent19fd8d0d3ebcf84e0e380902e0e2fe720d377f0f (diff)
downloadglibc-844bf92148eee21805b9248264b6c2c557529cc5.tar.gz
glibc-844bf92148eee21805b9248264b6c2c557529cc5.tar.xz
glibc-844bf92148eee21805b9248264b6c2c557529cc5.zip
hurd: Fix warning
	* sysdeps/mach/hurd/spawni.c (__spawni): Make relpath and abspath
	const char * instead of char *.
-rw-r--r--ChangeLog2
-rw-r--r--sysdeps/mach/hurd/spawni.c3
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 863afe0ce6..3ca2409663 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -37,6 +37,8 @@
 	critical section to make code simpler and avoid warning.
 	* sysdeps/mach/hurd/getresuid.c (__getresuid): Set result from
 	critical section to make code simpler and avoid warning.
+	* sysdeps/mach/hurd/spawni.c (__spawni): Make relpath and abspath
+	const char * instead of char *.
 
 2018-01-27  James Clarke  <jrtc27@jrtc27.com>
 
diff --git a/sysdeps/mach/hurd/spawni.c b/sysdeps/mach/hurd/spawni.c
index aa3b0c4660..9351c13e56 100644
--- a/sysdeps/mach/hurd/spawni.c
+++ b/sysdeps/mach/hurd/spawni.c
@@ -45,7 +45,8 @@ __spawni (pid_t *pid, const char *file,
 {
   pid_t new_pid;
   char *path, *p, *name;
-  char *concat_name = NULL, *relpath, *abspath;
+  char *concat_name = NULL;
+  const char *relpath, *abspath;
   int res;
   size_t len;
   size_t pathlen;