FreeBSD: Fix compilation

This commit is contained in:
Obiwac 2022-07-04 20:13:36 +00:00 committed by Adam Honse
parent 2414b41b94
commit 6def6a7772
2 changed files with 6 additions and 5 deletions

View file

@ -4,6 +4,7 @@
#include <fstream>
#include <iostream>
#include <limits.h>
#include <unistd.h>
#include <sstream>
@ -120,7 +121,7 @@ std::string AutoStart::GetExePath()
char exepath[ PATH_MAX ];
ssize_t count = readlink("/proc/self/exe", exepath, PATH_MAX);
return(std::string(exepath, (count > 0) ? count : 0));
}
@ -159,7 +160,7 @@ void AutoStart::InitAutoStart(std::string name)
std::error_code ec;
bool success = true;
if(!filesystem::exists(autostart_dir))
{
success = filesystem::create_directories(autostart_dir, ec);