about summary refs log tree commit diff stats
path: root/test/os_dep/linux/stdlib.py
diff options
context:
space:
mode:
authorPierre Lalet <pierre@droids-corp.org>2019-11-12 20:46:46 +0000
committerGitHub <noreply@github.com>2019-11-12 20:46:46 +0000
commitb265c8af0cee47c039bad11153d1eb9ba8383f71 (patch)
treea392717fba9902180ef02baf0691a6d060f4ae97 /test/os_dep/linux/stdlib.py
parent83e54bd2de945a36ab5ccd4cc5b94817d7cb0112 (diff)
parentc79fb842dd7b93d834952767d4abe7dd8b8a8061 (diff)
downloadmiasm-b265c8af0cee47c039bad11153d1eb9ba8383f71.tar.gz
miasm-b265c8af0cee47c039bad11153d1eb9ba8383f71.zip
Merge pull request #1088 from serpilliere/path_are_str
Path are str
Diffstat (limited to 'test/os_dep/linux/stdlib.py')
-rwxr-xr-xtest/os_dep/linux/stdlib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/os_dep/linux/stdlib.py b/test/os_dep/linux/stdlib.py
index ef890625..a0432e65 100755
--- a/test/os_dep/linux/stdlib.py
+++ b/test/os_dep/linux/stdlib.py
@@ -33,7 +33,7 @@ class TestLinuxStdlib(unittest.TestCase):
         jit.push_uint32_t(buf)
         jit.push_uint32_t(0) # ret_ad
         stdlib.xxx_sprintf(jit)
-        ret = jit.get_str_ansi(buf)
+        ret = jit.get_c_str(buf)
         self.assertEqual(ret, "'coucou' 1111")