aboutsummaryrefslogtreecommitdiff
path: root/emlink.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-07-03 21:54:06 -0700
committerAlon Zakai <alonzakai@gmail.com>2013-07-03 21:54:06 -0700
commitc9027f5ae501194eb3953c69d61280f64382c321 (patch)
treeb870e1fcf8e95ed6b2e5959ad06d5bb04a12f5ed /emlink.py
parentc1ea8dc5d56c2c39eec37c4a3ed862bd55bb29cb (diff)
improve warning text
Diffstat (limited to 'emlink.py')
-rw-r--r--emlink.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/emlink.py b/emlink.py
index 0a209cc7..d59cb5d3 100644
--- a/emlink.py
+++ b/emlink.py
@@ -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