about summary refs log tree commit diff stats
path: root/miasm2/core/bin_stream_ida.py
diff options
context:
space:
mode:
Diffstat (limited to 'miasm2/core/bin_stream_ida.py')
-rw-r--r--miasm2/core/bin_stream_ida.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/core/bin_stream_ida.py b/miasm2/core/bin_stream_ida.py
index 1610f8ca..ee3dcec3 100644
--- a/miasm2/core/bin_stream_ida.py
+++ b/miasm2/core/bin_stream_ida.py
@@ -11,7 +11,7 @@ class bin_stream_ida(bin_stream_str):
     Don't generate xrange using address computation:
     It can raise error on overflow 7FFFFFFF with 32 bit python
     """
-    def getbytes(self, start, l=1):
+    def _getbytes(self, start, l=1):
         o = ""
         for ad in xrange(l):
             o += chr(Byte(ad + start - self.shift))