aboutsummaryrefslogtreecommitdiff
path: root/src/parseTools.js
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-09-24 13:27:42 -0700
committerAlon Zakai <alonzakai@gmail.com>2013-09-24 13:27:42 -0700
commitddcc62e84f26ca358430642b64d49f0b7d88d081 (patch)
tree568f4917c032c63cea5aa52334c4619bcbb93cb1 /src/parseTools.js
parentbcc4e1636368a68193efbc09c68a4366a23ff74a (diff)
parent293c7b4860c3ae33b07011695adc9a6b8ff5ebdb (diff)
Merge pull request #1643 from waywardmonkeys/fix-typo
Fix typo in URL in warning message
Diffstat (limited to 'src/parseTools.js')
-rw-r--r--src/parseTools.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parseTools.js b/src/parseTools.js
index c55c895d..c0c8608c 100644
--- a/src/parseTools.js
+++ b/src/parseTools.js
@@ -1758,7 +1758,7 @@ function checkBitcast(item) {
} else {
warnOnce('Casting a function pointer type to a potentially incompatible one (use -s VERBOSE=1 to see more)');
}
- warnOnce('See https://github.com/kripken/emscripten/wiki/CodeGuidlinesAndLimitations#function-pointer-issues for more information on dangerous function pointer casts');
+ warnOnce('See https://github.com/kripken/emscripten/wiki/CodeGuidelinesAndLimitations#function-pointer-issues for more information on dangerous function pointer casts');
if (ASM_JS) warnOnce('Incompatible function pointer casts are very dangerous with ASM_JS=1, you should investigate and correct these');
}
if (oldCount != newCount && oldCount && newCount) showWarning();