Skip to content
Snippets Groups Projects
Commit 21ca64ba authored by Brian Carrier's avatar Brian Carrier
Browse files

Fixed compiler warning and added comment about updating java code with enum changes

parent 2f015184
No related branches found
No related tags found
No related merge requests found
...@@ -124,7 +124,7 @@ class TskAutoDb:public TskAuto { ...@@ -124,7 +124,7 @@ class TskAutoDb:public TskAuto {
//internal structure to keep track of temp. unalloc block range //internal structure to keep track of temp. unalloc block range
typedef struct _UNALLOC_BLOCK_WLK_TRACK { typedef struct _UNALLOC_BLOCK_WLK_TRACK {
_UNALLOC_BLOCK_WLK_TRACK(const TskAutoDb & tskAutoDb, const TSK_FS_INFO & fsInfo, const int64_t fsObjId, int64_t chunkSize) _UNALLOC_BLOCK_WLK_TRACK(const TskAutoDb & tskAutoDb, const TSK_FS_INFO & fsInfo, const int64_t fsObjId, int64_t chunkSize)
: tskAutoDb(tskAutoDb),fsInfo(fsInfo),fsObjId(fsObjId),curRangeStart(0),prevBlock(0),isStart(true), chunkSize(chunkSize) {} : tskAutoDb(tskAutoDb),fsInfo(fsInfo),fsObjId(fsObjId),curRangeStart(0), chunkSize(chunkSize), prevBlock(0), isStart(true) {}
const TskAutoDb & tskAutoDb; const TskAutoDb & tskAutoDb;
const TSK_FS_INFO & fsInfo; const TSK_FS_INFO & fsInfo;
const int64_t fsObjId; const int64_t fsObjId;
......
...@@ -214,7 +214,9 @@ extern "C" { ...@@ -214,7 +214,9 @@ extern "C" {
/** /**
* These are based on the NTFS type values. * These are based on the NTFS type values.
* Added types for HFS+. * Added types for HFS+.
* NOTE: Update bindings/java/src/org/sleuthkit/datamodel/TskData.java
* with any changes.
*/ */
typedef enum { typedef enum {
TSK_FS_ATTR_TYPE_NOT_FOUND = 0x00, // 0 TSK_FS_ATTR_TYPE_NOT_FOUND = 0x00, // 0
...@@ -767,6 +769,8 @@ extern "C" { ...@@ -767,6 +769,8 @@ extern "C" {
TSK_FS_TYPE_YAFFS2_DETECT = 0x00003000, ///< YAFFS2 auto detection TSK_FS_TYPE_YAFFS2_DETECT = 0x00003000, ///< YAFFS2 auto detection
TSK_FS_TYPE_UNSUPP = 0xffffffff, ///< Unsupported file system TSK_FS_TYPE_UNSUPP = 0xffffffff, ///< Unsupported file system
}; };
/* NOTE: Update bindings/java/src/org/sleuthkit/datamodel/TskData.java
* with any changes. */
typedef enum TSK_FS_TYPE_ENUM TSK_FS_TYPE_ENUM; typedef enum TSK_FS_TYPE_ENUM TSK_FS_TYPE_ENUM;
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment