From 3585d09b4f84dcb0df941c39e0d6d2a01c00f3c4 Mon Sep 17 00:00:00 2001 From: Brian Carrier <carrier@sleuthkit.org> Date: Tue, 13 Nov 2012 12:56:41 -0500 Subject: [PATCH] Fixed compiler warning --- tsk3/fs/ntfs_dent.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsk3/fs/ntfs_dent.cpp b/tsk3/fs/ntfs_dent.cpp index c4d7ec8d6..c6562c21b 100644 --- a/tsk3/fs/ntfs_dent.cpp +++ b/tsk3/fs/ntfs_dent.cpp @@ -1158,7 +1158,7 @@ ntfs_find_file_rec(TSK_FS_INFO * fs, NTFS_DINFO * dinfo, */ if ((fs_file_par->meta->type != TSK_FS_META_TYPE_DIR) || (fs_file_par->meta->seq != fs_name_list->par_seq)) { - char *str = TSK_FS_ORPHAN_STR; + const char *str = TSK_FS_ORPHAN_STR; len = strlen(str); /* @@@ There should be a sanity check here to verify that the -- GitLab