diff options
| author | gingerBill <bill@gingerbill.org> | 2023-02-10 17:15:40 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2023-02-10 17:15:40 +0000 |
| commit | f50ea649f63d1599beb8dc3f36d58d780c45fbfc (patch) | |
| tree | 9cff75c2338c85f3ee0603b2b64a03fd24ef3ebc | |
| parent | 6e647a88eb33cb44dcb38e180f90ad86a3c47db5 (diff) | |
Minor fix
| -rw-r--r-- | core/os/os_freebsd.odin | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/os/os_freebsd.odin b/core/os/os_freebsd.odin index d323279a7..02522dccf 100644 --- a/core/os/os_freebsd.odin +++ b/core/os/os_freebsd.odin @@ -576,7 +576,8 @@ _readlink :: proc(path: string) -> (string, Errno) { return strings.string_from_ptr(&buf[0], rc), ERROR_NONE } } - unreachable() + + return "", nil } // XXX FreeBSD |