Skip to content
Snippets Groups Projects
Commit d7b8b3a1 authored by Julian Cordes's avatar Julian Cordes
Browse files

tab fix at parser.y...

parent b1d42e00
No related branches found
No related tags found
No related merge requests found
......@@ -933,7 +933,7 @@ sctp_packet_spec
enum direction_t direction = outer->direction;
inner = new_sctp_generic_packet(in_config->wire_protocol, direction, $2,
-1, false, $6, &error);
-1, false, $6, &error);
if (inner == NULL) {
assert(error != NULL);
semantic_error(error);
......@@ -948,7 +948,7 @@ sctp_packet_spec
enum direction_t direction = outer->direction;
inner = new_sctp_generic_packet(in_config->wire_protocol, direction, $2,
-1, true, $9, &error);
-1, true, $9, &error);
if (inner == NULL) {
assert(error != NULL);
semantic_error(error);
......@@ -966,7 +966,7 @@ sctp_packet_spec
semantic_error("tag value out of range");
}
inner = new_sctp_generic_packet(in_config->wire_protocol, direction, $2,
$7, false, $11, &error);
$7, false, $11, &error);
if (inner == NULL) {
assert(error != NULL);
semantic_error(error);
......@@ -984,7 +984,7 @@ sctp_packet_spec
semantic_error("tag value out of range");
}
inner = new_sctp_generic_packet(in_config->wire_protocol, direction, $2,
$9, true, $13, &error);
$9, true, $13, &error);
if (inner == NULL) {
assert(error != NULL);
semantic_error(error);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment