diff options
author | j_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-04-19 07:17:50 +0000 |
---|---|---|
committer | j_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-04-19 07:17:50 +0000 |
commit | 0405f55b57271e25fe9dfdbdacb015e3ca672653 (patch) | |
tree | 8b2de895003b95d1d0485d1ab7b0240b638544ba /linux-user/ppc | |
parent | f9d6b6b061fcb44bc6da6dc458d07a9efbaf0d93 (diff) |
termios structure definition fix by Stuart Anderson.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2705 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'linux-user/ppc')
-rw-r--r-- | linux-user/ppc/termbits.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/ppc/termbits.h b/linux-user/ppc/termbits.h index 6326747ee5..7bf14eb5c3 100644 --- a/linux-user/ppc/termbits.h +++ b/linux-user/ppc/termbits.h @@ -7,8 +7,8 @@ struct target_termios { unsigned int c_oflag; /* output mode flags */ unsigned int c_cflag; /* control mode flags */ unsigned int c_lflag; /* local mode flags */ - unsigned char c_line; /* line discipline */ unsigned char c_cc[TARGET_NCCS]; /* control characters */ + unsigned char c_line; /* line discipline */ unsigned int c_ispeed; /* input speed */ unsigned int c_ospeed; /* output speed */ }; |