]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
posix: Make termios.c_cc field be an inline array
authorLuca Bruno <lucabru@src.gnome.org>
Tue, 30 Aug 2011 14:23:09 +0000 (16:23 +0200)
committerLuca Bruno <lucabru@src.gnome.org>
Thu, 1 Sep 2011 14:23:20 +0000 (16:23 +0200)
Fixes bug 657644.

vapi/posix.vapi

index 8da0d31fbc243075fc2fb6a40ed8d1873ceb0de9..4b7b145164057e7a1e64962fe87653640d761861 100644 (file)
@@ -1991,7 +1991,7 @@ namespace Posix {
                public tcflag_t c_cflag;
                public tcflag_t c_lflag;
                public cc_t c_line;
-               public unowned cc_t[] c_cc;
+               public cc_t c_cc[32];
                public speed_t c_ispeed;
                public speed_t c_ospeed;
        }