summaryrefslogtreecommitdiff
path: root/os-win.c
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2023-01-04 19:51:13 -0500
committerpommicket <pommicket@gmail.com>2023-01-04 19:51:13 -0500
commitd9cc57e9ff1725e6e63973705adbf218d6961d17 (patch)
tree4c2eaa1e0b39a3387793299c52062996ee7be3ae /os-win.c
parent87b0da0d33d97abc0ba94ad18d988d370d09441b (diff)
fix command-line argument starting file if it doesn't exist
it used to open an untitled buffer. also, clarified buffer_load_file
Diffstat (limited to 'os-win.c')
-rw-r--r--os-win.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/os-win.c b/os-win.c
index 1d0f21e..a32215a 100644
--- a/os-win.c
+++ b/os-win.c
@@ -98,7 +98,7 @@ int fs_mkdir(const char *path) {
}
}
-int fs_get_cwd(char *buf, size_t buflen) {
+int os_get_cwd(char *buf, size_t buflen) {
assert(buf && buflen);
wchar_t wide_path[4100];
DWORD wide_pathlen = GetCurrentDirectoryW(sizeof wide_path - 1, wide_path);