aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpgajdos on gitlab.freedesktop.org <pgajdos>2022-11-11 12:42:05 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2022-11-11 12:42:58 +0100
commit37bcba8eafdb2db18e5f0a2e898db58fb793b088 (patch)
tree5313c0396b085e104c75ff04939e4e4587d0b44e
parent38638382c8f3dc2523468f0c54014f4fdf0aa38f (diff)
downloadslirp-37bcba8eafdb2db18e5f0a2e898db58fb793b088.zip
slirp-37bcba8eafdb2db18e5f0a2e898db58fb793b088.tar.gz
slirp-37bcba8eafdb2db18e5f0a2e898db58fb793b088.tar.bz2
missing semicolon
Fixes #64
-rw-r--r--src/ip6_icmp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ip6_icmp.h b/src/ip6_icmp.h
index 9ae6266..33a568d 100644
--- a/src/ip6_icmp.h
+++ b/src/ip6_icmp.h
@@ -59,7 +59,7 @@ struct ndp_na { /* Neighbor Advertisement Message */
uint8_t R : 1, /* Router Flag */
S : 1, /* Solicited Flag */
O : 1, /* Override Flag */
- reserved_1 : 5
+ reserved_1 : 5;
#else
uint8_t reserved_1 : 5, O : 1, S : 1, R : 1;
#endif