summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--python/m5/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/m5/config.py b/python/m5/config.py
index e744b9ffb..30ce340f6 100644
--- a/python/m5/config.py
+++ b/python/m5/config.py
@@ -1145,7 +1145,7 @@ class Tick(CheckedInt): cppname = 'Tick'; size = 64; unsigned = True
class TcpPort(CheckedInt): cppname = 'uint16_t'; size = 16; unsigned = True
class UdpPort(CheckedInt): cppname = 'uint16_t'; size = 16; unsigned = True
-class Percent(CheckedInt): cppname = 'int'; min = 0; max = 100
+class Percent(CheckedInt): cppname = 'int'; min = 0; max = 100
class MemorySize(CheckedInt):
cppname = 'uint64_t'