summaryrefslogtreecommitdiff
path: root/ofproto/ofproto-provider.h
diff options
context:
space:
mode:
authorBen Pfaff <blp@ovn.org>2019-01-23 12:09:46 -0800
committerBen Pfaff <blp@ovn.org>2019-01-25 13:09:52 -0800
commitb53433079b8da5ecd33d0e3e1e1644a7997e0671 (patch)
treec138bd7b81a2bdae31cbef216b340c345eeda50a /ofproto/ofproto-provider.h
parent5cc463d60487b0d0050926ce3174ae962d524e57 (diff)
downloadopenvswitch-b53433079b8da5ecd33d0e3e1e1644a7997e0671.tar.gz
treewide: Get rid of // comments, even inside comments.
Just a style fix. With this patch, the following reports no hits: git ls-files | grep '\.[ch]$' | grep -vE 'datapath|sflow' \ | xargs grep -n // | grep -vE "http|s/|'|\"" Acked-by: Ilya Maximets <i.maximets@samsung.com> Reported-by: Ilya Maximets <i.maximets@samsung.com> Signed-off-by: Ben Pfaff <blp@ovn.org>
Diffstat (limited to 'ofproto/ofproto-provider.h')
-rw-r--r--ofproto/ofproto-provider.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ofproto/ofproto-provider.h b/ofproto/ofproto-provider.h
index 074edfc11..d1a87a59e 100644
--- a/ofproto/ofproto-provider.h
+++ b/ofproto/ofproto-provider.h
@@ -1128,12 +1128,12 @@ struct ofproto_class {
* if (error) {
* break;
* }
- * // Do something with 'port' here (without modifying or freeing
- * // any of its data).
+ * ...Do something with 'port' here (without modifying or freeing
+ * any of its data)...
* }
* ofproto->ofproto_class->port_dump_done(ofproto, state);
* }
- * // 'error' is now EOF (success) or a positive errno value (failure).
+ * ...'error' is now EOF (success) or a positive errno value (failure)...
*/
int (*port_dump_start)(const struct ofproto *ofproto, void **statep);
int (*port_dump_next)(const struct ofproto *ofproto, void *state,