aboutsummaryrefslogtreecommitdiff
path: root/lib/substrate-compat.c
diff options
context:
space:
mode:
authorcomex2015-01-10 16:33:13 -0500
committercomex2015-01-10 16:33:13 -0500
commitc15c71d9f02e7650fa7b87fc8cbe0f25ead2782c (patch)
tree115626b669f50033e83fbc9bd9dc06240205172f /lib/substrate-compat.c
parentsubstrate (diff)
downloadsubstitute-c15c71d9f02e7650fa7b87fc8cbe0f25ead2782c.tar.gz
fixes
Diffstat (limited to '')
-rw-r--r--lib/substrate-compat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/substrate-compat.c b/lib/substrate-compat.c
index 6bbe316..3658ac7 100644
--- a/lib/substrate-compat.c
+++ b/lib/substrate-compat.c
@@ -13,7 +13,7 @@ EXPORT
void *SubFindSymbol(void *image, const char *name) __asm__("SubFindSymbol");
void *SubFindSymbol(void *image, const char *name) {
if (!image) {
- const char *s = "SubFindSymbol: 'any image' specified, which is incredibly slow - like, 2ms. I'm going to do it since it seems to be somewhat common, but you should be ashamed of yourself.";
+ const char *s = "SubFindSymbol: 'any image' specified, which is incredibly slow - like, 2ms on a fast x86. I'm going to do it since it seems to be somewhat common, but you should be ashamed of yourself.";
syslog(LOG_WARNING, "%s", s);
fprintf(stderr, "%s\n", s);
/* and it isn't thread safe, but neither is MS */