minimal-bootstrap.ln-boot: fix typo in usage

+2 -2
+1 -1
pkgs/os-specific/linux/minimal-bootstrap/ln-boot/default.nix
··· 4 4 }: 5 5 let 6 6 pname = "ln-boot"; 7 - version = "unstable-2023-05-01"; 7 + version = "unstable-2023-05-22"; 8 8 9 9 src = ./ln.c; 10 10 in
+1 -1
pkgs/os-specific/linux/minimal-bootstrap/ln-boot/ln.c
··· 8 8 if (argc != 4 || strcmp(argv[1], "-s")) { 9 9 fputs("Usage: ", stdout); 10 10 fputs(argv[0], stdout); 11 - fputs("ln -s TARGET LINK_NAME\n", stdout); 11 + fputs(" -s TARGET LINK_NAME\n", stdout); 12 12 exit(EXIT_FAILURE); 13 13 } 14 14