mirror of https://github.com/xemu-project/xemu.git
slirp: replace SIZEOF_CHAR_P with glib equivalent
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
This commit is contained in:
parent
e429f29602
commit
0826c2400d
|
@ -177,7 +177,7 @@ struct ip_timestamp {
|
||||||
|
|
||||||
#define IP_MSS 576 /* default maximum segment size */
|
#define IP_MSS 576 /* default maximum segment size */
|
||||||
|
|
||||||
#if SIZEOF_CHAR_P == 4
|
#if GLIB_SIZEOF_VOID_P == 4
|
||||||
struct mbuf_ptr {
|
struct mbuf_ptr {
|
||||||
struct mbuf *mptr;
|
struct mbuf *mptr;
|
||||||
uint32_t dummy;
|
uint32_t dummy;
|
||||||
|
|
|
@ -10,6 +10,3 @@
|
||||||
* Autoconf defined configuration options
|
* Autoconf defined configuration options
|
||||||
* You shouldn't need to touch any of these
|
* You shouldn't need to touch any of these
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Define to sizeof(char *) */
|
|
||||||
#define SIZEOF_CHAR_P (HOST_LONG_BITS / 8)
|
|
||||||
|
|
Loading…
Reference in New Issue