diff options
| author | Pierre Lalet <pierre@droids-corp.org> | 2019-11-12 20:46:46 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-11-12 20:46:46 +0000 |
| commit | b265c8af0cee47c039bad11153d1eb9ba8383f71 (patch) | |
| tree | a392717fba9902180ef02baf0691a6d060f4ae97 /test/os_dep/linux/stdlib.py | |
| parent | 83e54bd2de945a36ab5ccd4cc5b94817d7cb0112 (diff) | |
| parent | c79fb842dd7b93d834952767d4abe7dd8b8a8061 (diff) | |
| download | miasm-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-x | test/os_dep/linux/stdlib.py | 2 |
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") |