aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimo Weingärtner <timo@tiwe.de>2014-04-14 21:08:54 +0200
committerTimo Weingärtner <timo@tiwe.de>2014-04-14 21:39:27 +0200
commit26b246ac93d59a7f7ba29cff36ad1a3e61306a58 (patch)
tree53cc91ecb53617353429f262fd358c9d9f9da9f8
parent7d0f47c171b716b7e138157f8165ebf790227582 (diff)
downloadssh-agent-filter-26b246ac93d59a7f7ba29cff36ad1a3e61306a58.tar.gz
cosmetic: fix double semicolons
-rw-r--r--rfc4251.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/rfc4251.h b/rfc4251.h
index 74bdc34..98734bf 100644
--- a/rfc4251.h
+++ b/rfc4251.h
@@ -54,7 +54,7 @@ inline std::istream & operator>> (std::istream & is, rfc4251byte & x) {
}
inline std::ostream & operator<< (std::ostream & os, rfc4251byte const & x) {
- return os.write(x.buf, sizeof(x.buf));;
+ return os.write(x.buf, sizeof(x.buf));
}
@@ -75,7 +75,7 @@ inline std::istream & operator>> (std::istream & is, rfc4251bool & x) {
}
inline std::ostream & operator<< (std::ostream & os, rfc4251bool const & x) {
- return os.write(x.buf, sizeof(x.buf));;
+ return os.write(x.buf, sizeof(x.buf));
}
@@ -96,7 +96,7 @@ inline std::istream & operator>> (std::istream & is, rfc4251uint32 & x) {
}
inline std::ostream & operator<< (std::ostream & os, rfc4251uint32 const & x) {
- return os.write(x.buf, sizeof(x.buf));;
+ return os.write(x.buf, sizeof(x.buf));
}
@@ -133,7 +133,7 @@ inline std::istream & operator>> (std::istream & is, rfc4251uint64 & x) {
}
inline std::ostream & operator<< (std::ostream & os, rfc4251uint64 const & x) {
- return os.write(x.buf, sizeof(x.buf));;
+ return os.write(x.buf, sizeof(x.buf));
}