diff options
| author | marky <mark@noffle.net> | 2015-12-30 21:29:34 -0700 |
|---|---|---|
| committer | marky <mark@noffle.net> | 2015-12-30 21:29:34 -0700 |
| commit | 2ccb4f6f9588e0181f42cbdd7c7aaf46ff391b79 (patch) | |
| tree | 2c6b8909b61bdbd96f8d7f03714f90eafc6b3882 | |
| parent | 02aa995eb1e941719be1398926051d789a150fda (diff) | |
fix a syntax error in example.cfg
Missing comma makes it so that syz-manager does not properly parse the example
config.
Signed-off-by: marky <mark@noffle.net>
| -rw-r--r-- | syz-manager/example.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/syz-manager/example.cfg b/syz-manager/example.cfg index e9f841b7a..cae69d826 100644 --- a/syz-manager/example.cfg +++ b/syz-manager/example.cfg @@ -10,7 +10,7 @@ "count": 16, "procs": 4, "cpu": 2, - "mem": 2048 + "mem": 2048, "disable_syscalls": [ "keyctl", "add_key", |
