Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/com.windriver.tcf.api/src/com/windriver/tcf/api/services/IMemory.java')
-rw-r--r--plugins/com.windriver.tcf.api/src/com/windriver/tcf/api/services/IMemory.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/com.windriver.tcf.api/src/com/windriver/tcf/api/services/IMemory.java b/plugins/com.windriver.tcf.api/src/com/windriver/tcf/api/services/IMemory.java
index 0f01c4a95..ef0b7a5fb 100644
--- a/plugins/com.windriver.tcf.api/src/com/windriver/tcf/api/services/IMemory.java
+++ b/plugins/com.windriver.tcf.api/src/com/windriver/tcf/api/services/IMemory.java
@@ -184,11 +184,11 @@ public interface IMemory extends IService {
// Error may have per byte information
final static int
- BYTE_VALID = 0x00,
- BYTE_UNKNOWN = 0x01, // e.g. out of range
- BYTE_INVALID = 0x02,
- BYTE_CANNOT_READ = 0x04,
- BYTE_CANNOT_WRITE = 0x08;
+ BYTE_VALID = 0x00,
+ BYTE_UNKNOWN = 0x01, // e.g. out of range
+ BYTE_INVALID = 0x02,
+ BYTE_CANNOT_READ = 0x04,
+ BYTE_CANNOT_WRITE = 0x08;
int getStatus(int offset);

Back to the top