]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
Fix small mistake in previous commit, use "_data_" instead of "data"
authorLuca Bruno <lucabru@src.gnome.org>
Sun, 2 Oct 2011 12:15:22 +0000 (14:15 +0200)
committerLuca Bruno <lucabru@src.gnome.org>
Sun, 2 Oct 2011 12:15:22 +0000 (14:15 +0200)
Unwantedly missed to amend the commit after refreshing the patch.

codegen/valaccodebasemodule.vala

index 29feb480f5a569a24f2078026efcea922013ad9f..63ee7238e1210ca568eeab2fa6a14047cbf7b640 100644 (file)
@@ -2046,7 +2046,7 @@ public abstract class Vala.CCodeBaseModule : CodeGenerator {
 
        public CCodeExpression get_local_cexpression (LocalVariable local) {
                if (is_in_coroutine ()) {
-                       return new CCodeMemberAccess.pointer (new CCodeIdentifier ("data"), get_local_cname (local));
+                       return new CCodeMemberAccess.pointer (new CCodeIdentifier ("_data_"), get_local_cname (local));
                } else {
                        return new CCodeIdentifier (get_local_cname (local));
                }