From c5c460eabd3fce322b1eabf6b7eedd38e09d804a Mon Sep 17 00:00:00 2001 From: Greg DiCristofaro <gregd@basistech.com> Date: Tue, 17 Jan 2023 13:27:04 -0500 Subject: [PATCH] unix fix for null --- tsk/fs/logical_fs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsk/fs/logical_fs.cpp b/tsk/fs/logical_fs.cpp index 68c98b1c2..897c46564 100644 --- a/tsk/fs/logical_fs.cpp +++ b/tsk/fs/logical_fs.cpp @@ -321,7 +321,7 @@ TSK_TCHAR * create_search_path_long_path(const TSK_TCHAR *base_path) { return searchPath; #else // Nothing to do here if it's not Windows - return null; + return NULL; #endif } -- GitLab