1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-16 08:15:31 +00:00

Change error message printed when ldeether is unable to exec() lde to provide more information.

modified:   src/ldeether.c
This commit is contained in:
Nick Briggs 2020-08-11 14:44:29 -07:00
parent 30bfeb3a43
commit aac75b633c

View File

@ -258,7 +258,7 @@ int main(int argc, char *argv[]) {
/* then execve the LDE executable */
execvp(filetorun, newargv);
perror(filetorun);
perror("failed to exec lde");
return (1);
}