mirror of
https://github.com/systemd/systemd-stable.git
synced 2024-10-31 07:51:08 +03:00
usb-db: remove double '/'
This commit is contained in:
parent
5539f624e1
commit
86dc9133f8
@ -1,5 +1,3 @@
|
||||
/*-*- linux-c -*-*/
|
||||
|
||||
/*
|
||||
* Copyright (C) 2009 Lennart Poettering <lennart@poettering.net>
|
||||
*
|
||||
@ -223,7 +221,7 @@ int main(int argc, char*argv[]) {
|
||||
if (!(udev = udev_new()))
|
||||
goto finish;
|
||||
|
||||
if (asprintf(&sp, "%s/%s", udev_get_sys_path(udev), argv[1]) < 0) {
|
||||
if (asprintf(&sp, "%s%s", udev_get_sys_path(udev), argv[1]) < 0) {
|
||||
fprintf(stderr, "Failed to allocate sysfs path.\n");
|
||||
goto finish;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user