diff options
author | Martin Mares <mj@ucw.cz> | 1999-12-16 13:14:32 +0000 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1999-12-16 13:14:32 +0000 |
commit | 3f996d46df3cf1bdbefe0b0b0f5245c76b12756b (patch) | |
tree | 53dd7e2fb5f9ba2765140f4c3339bd6d5c92ac41 | |
parent | a2867cd957c9282d47440a1f42a6b823f5c9e4b2 (diff) |
Added missing semicolon.
rip.h compiles in IPv6 mode, rip.c still doesn't.
-rw-r--r-- | proto/rip/rip.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/rip/rip.h b/proto/rip/rip.h index 7d9cadfa..62c81210 100644 --- a/proto/rip/rip.h +++ b/proto/rip/rip.h @@ -55,7 +55,7 @@ struct rip_block { /* IPv6 version! */ ip_addr network; u16 tag; u8 pxlen; - u8 metric + u8 metric; }; #endif |