summaryrefslogtreecommitdiffstats
path: root/libmount/src/tab_parse.c
diff options
context:
space:
mode:
authorKarel Zak2018-07-20 15:31:42 +0200
committerKarel Zak2018-07-20 15:31:42 +0200
commit78c66fc61dc42f36c4c49bad811083cabc666583 (patch)
tree81a323de5fc5fe1f47a601586bc8fc491475669c /libmount/src/tab_parse.c
parentinclude/list, include/c: update and container_of() (diff)
downloadkernel-qcow2-util-linux-78c66fc61dc42f36c4c49bad811083cabc666583.tar.gz
kernel-qcow2-util-linux-78c66fc61dc42f36c4c49bad811083cabc666583.tar.xz
kernel-qcow2-util-linux-78c66fc61dc42f36c4c49bad811083cabc666583.zip
lib/mangle: const quialifier cleanup
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'libmount/src/tab_parse.c')
-rw-r--r--libmount/src/tab_parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmount/src/tab_parse.c b/libmount/src/tab_parse.c
index 8793f5e6a..89f7c4d30 100644
--- a/libmount/src/tab_parse.c
+++ b/libmount/src/tab_parse.c
@@ -272,7 +272,7 @@ static int mnt_parse_utab_line(struct libmnt_fs *fs, const char *s)
assert(!fs->target);
while (p && *p) {
- char *end = NULL;
+ const char *end = NULL;
while (*p == ' ') p++;
if (!*p)