summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorKarel Zak2018-07-03 13:55:32 +0200
committerKarel Zak2018-07-03 13:55:32 +0200
commit9c836fde5f46bdad86f353bba0696ad7376af320 (patch)
tree7e78845269d38750cbfc26997b7dc403009a956e /lib
parentfallocate: add man page note about --collapse-range granularity (diff)
parentwipefs: add missing ifdef (diff)
downloadkernel-qcow2-util-linux-9c836fde5f46bdad86f353bba0696ad7376af320.tar.gz
kernel-qcow2-util-linux-9c836fde5f46bdad86f353bba0696ad7376af320.tar.xz
kernel-qcow2-util-linux-9c836fde5f46bdad86f353bba0696ad7376af320.zip
Merge branch 'fixes' of https://github.com/rudimeier/util-linux
* 'fixes' of https://github.com/rudimeier/util-linux: wipefs: add missing ifdef lib/path: remove unused expression ipcs,chmem: fix access() usage
Diffstat (limited to 'lib')
-rw-r--r--lib/path.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/path.c b/lib/path.c
index 34abb144a..9cc2e3e2e 100644
--- a/lib/path.c
+++ b/lib/path.c
@@ -1039,7 +1039,7 @@ int main(int argc, char *argv[])
while((c = getopt_long(argc, argv, "p:h", longopts, NULL)) != -1) {
switch(c) {
case 'p':
- prefix = optarg, "failed to parse range start";
+ prefix = optarg;
break;
case 'h':
usage();