1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2025-12-21 02:33:24 +00:00

Fixed formatting in error message

This commit is contained in:
Bryan Roe
2020-09-17 14:53:28 -07:00
parent c9e42cae2c
commit 3f4e5df9a2

View File

@@ -449,7 +449,8 @@ void ILibDuktape_ScriptContainer_CheckEmbedded(char **script, int *scriptLen)
int x = readlink("/proc/curproc/file", exePath, sizeof(exePath));
if (x < 0 || x >= sizeof(exePath))
{
printf("You'll need to mount procfs, which isn't mounted by default on FreeBSD. Add the following line to /etc/fstab\n");
printf("\nYou'll need to mount procfs, which isn't mounted by default on FreeBSD.\n");
printf("Add the following line to /etc/fstab\n");
printf(" proc /proc procfs rw 0 0\n\n");
printf("If you don't reboot after, then you can manually mount with the command:\n");
printf(" mount -t procfs proc /proc\n\n");