From: Gabe Black Date: Thu, 5 Oct 2017 02:28:53 +0000 (-0700) Subject: misc: Small style fix in _EncodeVarint32. X-Git-Tag: v19.0.0.0~2609 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=dad2ed25ed5bc88683988ec898f31e2da0d071ed;p=gem5.git misc: Small style fix in _EncodeVarint32. Added spaces around the '|' operator. Change-Id: I5cb82b98e7d2769605cde141f76a62a6e3c6570d Reviewed-on: https://gem5-review.googlesource.com/5002 Reviewed-by: Andreas Sandberg Maintainer: Andreas Sandberg --- diff --git a/util/protolib.py b/util/protolib.py index 4f3f2c7e3..1e442f1d9 100644 --- a/util/protolib.py +++ b/util/protolib.py @@ -152,7 +152,7 @@ def _EncodeVarint32(out_file, value): bits = value & 0x7f value >>= 7 while value: - out_file.write(struct.pack('>= 7 out_file.write(struct.pack('