diff --git a/src/udev/ata_id/ata_id.c b/src/udev/ata_id/ata_id.c index e5a9400eda..deeb939f54 100644 --- a/src/udev/ata_id/ata_id.c +++ b/src/udev/ata_id/ata_id.c @@ -425,9 +425,10 @@ int main(int argc, char *argv[]) { export = 1; break; case 'h': - printf("Usage: ata_id [--export] [--help] \n" + printf("Usage: %s [--export] [--help] \n" " -x,--export print values as environment keys\n" - " -h,--help print this help text\n\n"); + " -h,--help print this help text\n\n", + program_invocation_short_name); return 0; } } diff --git a/src/udev/cdrom_id/cdrom_id.c b/src/udev/cdrom_id/cdrom_id.c index a287901266..75afe4e7c9 100644 --- a/src/udev/cdrom_id/cdrom_id.c +++ b/src/udev/cdrom_id/cdrom_id.c @@ -849,12 +849,13 @@ int main(int argc, char *argv[]) { log_open(); break; case 'h': - printf("Usage: cdrom_id [options] \n" + printf("Usage: %s [options] \n" " -l,--lock-media lock the media (to enable eject request events)\n" " -u,--unlock-media unlock the media\n" " -e,--eject-media eject the media\n" " -d,--debug debug to stderr\n" - " -h,--help print this help text\n\n"); + " -h,--help print this help text\n\n", + program_invocation_short_name); goto exit; default: rc = 1;