about summary refs log tree commit diff stats
path: root/miasm/tools/codenat.py
diff options
context:
space:
mode:
Diffstat (limited to 'miasm/tools/codenat.py')
-rw-r--r--miasm/tools/codenat.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/miasm/tools/codenat.py b/miasm/tools/codenat.py
index 6711f802..a601ffae 100644
--- a/miasm/tools/codenat.py
+++ b/miasm/tools/codenat.py
@@ -131,7 +131,7 @@ def codenat_tcc_load():
     print libpath
     print libdir
     libcntcc.tcc_set_emul_lib_path(libdir, libpath, get_python_inc())
-    
+
 def codenat_tcc_init():
     global libcntcc
     if libcntcc == None:
@@ -156,5 +156,5 @@ class tcc_code():
         self.func = lambda :libcntcc.tcc_exec_bloc(self.c)
 
 def gen_C_module_tcc(f_name, c_source):
-    mcode = codenat_tcc_compil(f_name, c_source)    
+    mcode = codenat_tcc_compil(f_name, c_source)
     return tcc_code(mcode)