| Submitter | Stefan Weil |
|---|---|
| Date | March 2, 2010, 9:38 p.m. |
| Message ID | <1267565880-18382-20-git-send-email-weil@mail.berlios.de> |
| Download | mbox | patch |
| Permalink | /patch/46725/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/hw/eepro100.c b/hw/eepro100.c index 43a9060..45ab497 100644 --- a/hw/eepro100.c +++ b/hw/eepro100.c @@ -41,8 +41,8 @@ * * Wake-on-LAN is not implemented. */ +#include <stdbool.h> /* bool */ #include <stddef.h> /* offsetof */ -#include <stdbool.h> #include "hw.h" #include "pci.h" #include "net.h"
I always try to keep standard includes sorted and add a comment why they are there (so they can be removed when they are no longer needed). Signed-off-by: Stefan Weil <weil@mail.berlios.de> --- hw/eepro100.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)