From 02f3a834b014da10e487cb3150120c0dc0a4c119 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Thu, 28 Feb 2019 15:40:57 -0500 Subject: struct types get fully qualified names and function symbol names become fully qualified --- src/os.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/os.cpp') diff --git a/src/os.cpp b/src/os.cpp index 732baea359..e418aa2c29 100644 --- a/src/os.cpp +++ b/src/os.cpp @@ -264,7 +264,7 @@ void os_path_join(Buf *dirname, Buf *basename, Buf *out_full_path) { buf_append_buf(out_full_path, basename); } -int os_path_real(Buf *rel_path, Buf *out_abs_path) { +Error os_path_real(Buf *rel_path, Buf *out_abs_path) { #if defined(ZIG_OS_WINDOWS) buf_resize(out_abs_path, 4096); if (_fullpath(buf_ptr(out_abs_path), buf_ptr(rel_path), buf_len(out_abs_path)) == nullptr) { -- cgit v1.2.3