diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-07-03 21:54:06 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-07-03 21:54:06 -0700 |
commit | c9027f5ae501194eb3953c69d61280f64382c321 (patch) | |
tree | b870e1fcf8e95ed6b2e5959ad06d5bb04a12f5ed /emlink.py | |
parent | c1ea8dc5d56c2c39eec37c4a3ed862bd55bb29cb (diff) |
improve warning text
Diffstat (limited to 'emlink.py')
-rw-r--r-- | emlink.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -134,7 +134,7 @@ class AsmModule(): def check_import(key, value): if value.startswith('+') or value.endswith('|0'): # ignore functions if key not in all_sendings: - print >> sys.stderr, 'external variable %s is still not defined after linking' % key + print >> sys.stderr, 'warning: external variable %s is still not defined after linking' % key for key, value in all_imports.iteritems(): check_import(key, value) # tables |