Avoid usage of nameless unions as they are - surprisingly at least to me - not part of any C spec.

This commit is contained in:
oliverschmidt 2007-05-23 21:35:18 +00:00
parent ad59a54fa8
commit e9e925bc6a
2 changed files with 8 additions and 9 deletions

View file

@ -28,7 +28,7 @@
*
* This file is part of the uIP TCP/IP stack.
*
* $Id: httpd.h,v 1.4 2007/04/23 21:19:55 oliverschmidt Exp $
* $Id: httpd.h,v 1.5 2007/05/23 21:35:18 oliverschmidt Exp $
*
*/
@ -50,11 +50,10 @@ struct httpd_state {
int len;
char *scriptptr;
int scriptlen;
union {
unsigned short count;
void *ptr;
};
} u;
};