Padded struct codeprop_tcphdr to 4 bytes, to get around different

alignment on different platforms.
This commit is contained in:
ksb 2007-03-18 13:15:00 +00:00
parent 943a12613f
commit 7c8665fb89
5 changed files with 17 additions and 8 deletions

View file

@ -28,7 +28,7 @@
*
* This file is part of the Contiki operating system.
*
* @(#)$Id: codeprop.h,v 1.1 2006/06/18 07:44:36 adamdunkels Exp $
* @(#)$Id: codeprop.h,v 1.2 2007/03/18 13:15:01 ksb Exp $
*/
#ifndef __CODEPROP_H__
#define __CODEPROP_H__
@ -39,6 +39,7 @@
struct codeprop_tcphdr {
u16_t len;
u16_t pad;
};
PROCESS_NAME(codeprop_process);