commit | 234fd1e71f8aee324021b9493ed64e43b1499aa2 | [log] [tgz] |
---|---|---|
author | Yotam Harchol <yotam.harchol@bigswitch.com> | Mon Sep 16 09:57:30 2013 -0700 |
committer | Yotam Harchol <yotam.harchol@bigswitch.com> | Mon Sep 16 09:57:30 2013 -0700 |
tree | 310192bf53da342fe0c32cc1fc55fc6340667341 | |
parent | 07cf6668655f878648d765fe4efa75b043d1c23d [diff] |
Fixed wrong write action in type VlanPcp
diff --git a/java_gen/pre-written/src/main/java/org/projectfloodlight/openflow/types/VlanPcp.java b/java_gen/pre-written/src/main/java/org/projectfloodlight/openflow/types/VlanPcp.java index ee7d06c..f6993fe 100644 --- a/java_gen/pre-written/src/main/java/org/projectfloodlight/openflow/types/VlanPcp.java +++ b/java_gen/pre-written/src/main/java/org/projectfloodlight/openflow/types/VlanPcp.java
@@ -54,7 +54,7 @@ } public void writeByte(ChannelBuffer c) { - c.writeShort(this.pcp); + c.writeByte(this.pcp); } public static VlanPcp readByte(ChannelBuffer c) throws OFParseError {