From 1fa9c5d7942403dd1eabdea5834a9d61afd69ba7 Mon Sep 17 00:00:00 2001 From: jaycedowell Date: Mon, 9 Dec 2024 13:52:32 -0700 Subject: [PATCH] Small tweak to the output filenames. --- tools/thors_hammer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/thors_hammer.py b/tools/thors_hammer.py index 9d0546c9..6b8cbdd9 100755 --- a/tools/thors_hammer.py +++ b/tools/thors_hammer.py @@ -99,7 +99,7 @@ def main(args): nbyteF = 0 ## Open the i-th file - fd = os.open(f"{args.filename}_{i+1}", file_flags, mode=0o664) + fd = os.open(f"{args.filename}.{i+1}", file_flags, mode=0o664) fh = DummyFileHandle(fd) udt = DiskWriter(f"generic_{args.packet_size}", fh)