diff options
author | Susan Brownhill <sbrownhi@quicinc.com> | 2010-03-19 13:28:44 -0700 |
---|---|---|
committer | Susan Brownhill <sbrownhi@quicinc.com> | 2010-03-19 13:28:44 -0700 |
commit | 212f1364c38c0bacf406954bcdd870c934e8d11a (patch) | |
tree | 2cf977dbddeaee7b63d4881748e39825864a7543 | |
parent | 4bad86a7ec65aabd08e8d8203519cd28ddd57e84 (diff) | |
download | bionic-212f1364c38c0bacf406954bcdd870c934e8d11a.zip bionic-212f1364c38c0bacf406954bcdd870c934e8d11a.tar.gz bionic-212f1364c38c0bacf406954bcdd870c934e8d11a.tar.bz2 |
bionic: Reorder fields in a data structure
Make union last field in a data structure for backward compatibility
Change-Id: Iddd74b11661b9d12d869d4c62a52661c77362a90
-rw-r--r-- | libc/kernel/common/linux/msm_q6venc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/kernel/common/linux/msm_q6venc.h b/libc/kernel/common/linux/msm_q6venc.h index 433c265..da18b89 100644 --- a/libc/kernel/common/linux/msm_q6venc.h +++ b/libc/kernel/common/linux/msm_q6venc.h @@ -220,8 +220,8 @@ union venc_msg_data { struct venc_msg { u32 status_code; u32 msg_code; - union venc_msg_data msg_data; u32 msg_data_size; + union venc_msg_data msg_data; }; union venc_codec_config { |