diff --git a/libutil/util_path_example.c b/libutil/util_path_example.c index 2153d972..4a88e5e2 100644 --- a/libutil/util_path_example.c +++ b/libutil/util_path_example.c @@ -90,7 +90,7 @@ static void test_util_path_is_xxx(void) } /* - * Usage: util_path_example [sysfs mount point] | "is_xxx" + * Usage: util_path_example sysfs [MOUNT_POINT] | is_xxx */ int main(int argc, char *argv[]) { @@ -111,6 +111,6 @@ int main(int argc, char *argv[]) } return EXIT_SUCCESS; out_fail: - errx(EXIT_FAILURE, "Usage: %s sysfs | is_xxx", argv[0]); + errx(EXIT_FAILURE, "Usage: %s sysfs [MOUNT_POINT] | is_xxx", argv[0]); } //! [code]