diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-11-22 00:53:39 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-11-22 00:53:39 +0100 |
commit | e71f88f5af3c14812c8897c884cf34d821d38a26 (patch) | |
tree | 158d1b2e4d08fc7ec6dc8b7b8bc0017040be73b4 /sutils | |
parent | b41ccf1b0351f7c836bf000b9e8c4a389e38f389 (diff) | |
download | hurd-e71f88f5af3c14812c8897c884cf34d821d38a26.tar.gz hurd-e71f88f5af3c14812c8897c884cf34d821d38a26.tar.bz2 hurd-e71f88f5af3c14812c8897c884cf34d821d38a26.zip |
clookup: Fix warning
* sutils/clookup.c (file_name_lookup_carefully): Make head a non-const
char *.
Diffstat (limited to 'sutils')
-rw-r--r-- | sutils/clookup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sutils/clookup.c b/sutils/clookup.c index 97a04b51..1858efb9 100644 --- a/sutils/clookup.c +++ b/sutils/clookup.c @@ -56,8 +56,8 @@ file_name_lookup_carefully (const char *name, int flags, mode_t mode) mach_port_t *node) { error_t err; - const char *head, *tail; - char *slash = index (name, '/'); + const char *tail; + char *slash = index (name, '/'), *head; if (slash) { |