diff options
| author | Dong Xu Wang | 2011-11-29 09:52:38 +0100 |
|---|---|---|
| committer | Stefan Hajnoczi | 2011-12-06 10:56:41 +0100 |
| commit | 3a93113a002db694657fcf24ff0c96aef83303b8 (patch) | |
| tree | 0dd0d2d6691f800325c6b193d26cd9a13fe1fe08 /net | |
| parent | win32: fix memory leak (diff) | |
| download | qemu-3a93113a002db694657fcf24ff0c96aef83303b8.tar.gz qemu-3a93113a002db694657fcf24ff0c96aef83303b8.tar.xz qemu-3a93113a002db694657fcf24ff0c96aef83303b8.zip | |
fix typo: delete redundant semicolon
Double semicolons should be single.
Signed-off-by: Dong Xu Wang <wdongxu@linux.vnet.ibm.com>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'net')
| -rw-r--r-- | net/tap-solaris.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/tap-solaris.c b/net/tap-solaris.c index c216d28267..cf764634ef 100644 --- a/net/tap-solaris.c +++ b/net/tap-solaris.c @@ -65,7 +65,7 @@ static int tap_alloc(char *dev, size_t dev_size) static int arp_fd = 0; int ip_muxid, arp_muxid; struct strioctl strioc_if, strioc_ppa; - int link_type = I_PLINK;; + int link_type = I_PLINK; struct lifreq ifr; char actual_name[32] = ""; |
