summary refs log tree commit diff stats
path: root/tinyc
diff options
context:
space:
mode:
authorDominik Picheta <dominikpicheta@googlemail.com>2014-02-08 15:59:42 +0000
committerDominik Picheta <dominikpicheta@googlemail.com>2014-02-08 15:59:42 +0000
commita3f3efa1ba9e8d95acdf81e4bd07aa180c383906 (patch)
tree7a54f1d10f122256421c8654e3513b03679a2da6 /tinyc
parent471c0aa6349b7ad41d70b64ed370106bed9f0d01 (diff)
parenta70235daaa2b73bfc04fa53583be56adefd1deb8 (diff)
downloadNim-a3f3efa1ba9e8d95acdf81e4bd07aa180c383906.tar.gz
Merge branch 'devel' into newasync
Diffstat (limited to 'tinyc')
-rw-r--r--tinyc/tccgen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tinyc/tccgen.c b/tinyc/tccgen.c
index 942c503c1..3135e7b37 100644
--- a/tinyc/tccgen.c
+++ b/tinyc/tccgen.c
@@ -1931,7 +1931,7 @@ static void gen_assign_cast(CType *dt)
             goto type_ok;
         }
         type1 = pointed_type(dt);
-        /* a function is implicitely a function pointer */
+        /* a function is implicitly a function pointer */
         if (sbt == VT_FUNC) {
             if ((type1->t & VT_BTYPE) != VT_VOID &&
                 !is_compatible_types(pointed_type(dt), st))